I have a main form.
On the form i have a group selection box
example
address = 1
telephone details = 2
etc
etc
I have a number of sub forms for example address details
when the group selection box if checked then the addressd details appear
i have got this to work ok.
but when i selct another check box then the form example telephone appears ok, but in table form, not as designed as a sub form
also how do i have multiple if staments
example on my group selction box i i have
If frame90 = 1
then subform address.visable = true
else subform address.visable=falsoe
endif
i also want to add on
if frame90 = 2
then subform_telephone.visable=true
else subform_telephone.visable=false
endif
but this does not work