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??




Reply With Quote