'Creating controls 

at

runtime If you want to create controls

at

runtime you need the command LOAD. But don't forget you have to

make

one instance of the desired control to be able to use the LOAD command. So work as discribed: step 1:

make

the desired control

on

the form step 2: give it the index-number 0 step 3:

make

it invisible When you need another control just use the command LOAD control(#) where control is the desired control and # the index-number. Remember! All the loaded controls

are

INVISIBLE. That's nice because now you can set

all

the desired properties before

setting

invisble = True. Also

all

the loaded controls

are

at

the same position! Just use control.Move to get it to the right

spot

on

the form.
Return