How to make a subform optional

Gkirkup

Registered User.
Local time
Today, 09:27
Joined
Mar 6, 2007
Messages
628
I have a form with several subforms. Based on a condition, I want to make one of the subforms NOT appear when that condition is true. How do I do that?

Robert
 
Code:
If Whatever Then
  Me.SubformControlName.Visible = False
End If
 

Users who are viewing this thread

Back
Top Bottom