Dynamic forms

shafee212

Member
Can we create forms in progress whose does not have a fixed number of variables

for eg at one time

form
a1
a2
a3 with frame a.

and some time it could be just

form
a1
a2 with frame a.

a3 shud not be shown in form for the 2nd case .

thanks in advance .
 
create fill-in.
fill-in:parent = frame a.

or use
if some condition then
do:
a3:hidden with frame a = true.
a3:disable with frame a = true.
end.
 
Top