Martin Evans
September 25th, 2001, 07:22 AM
When you create a new Form in run-time mode ie
Dim frms(100) as Form
dim intform as Integer
for intform=1 to 100
set frms(intForm) = new frmMain
frms(intform).caption=intform
frms(intform).show
next intform
How do you create new Listboxes in the same manner??
Dim frms(100) as Form
dim intform as Integer
for intform=1 to 100
set frms(intForm) = new frmMain
frms(intform).caption=intform
frms(intform).show
next intform
How do you create new Listboxes in the same manner??