Y yaronh Guest May 15, 2002 #1 I would like to create a macro that will change the property of a given textbox in a form from hidden to vissible. I couldn't find any function that will do it and my VBA skills are somehow limited. Anyone can help ??
I would like to create a macro that will change the property of a given textbox in a form from hidden to vissible. I couldn't find any function that will do it and my VBA skills are somehow limited. Anyone can help ??
Graham T Registered User. Local time Today, 02:13 Joined Mar 14, 2001 Messages 300 May 15, 2002 #2 Yaronh You should be able to use a simple If, Then, Else statement in VB to solve this problem. Code: If [YourFieldName] meets some condition Then Me.[YourTextBoxName].Visible = True Else Me.[YourTextBoxName].Visible = False End If Post further information as to what exactly you are trying to do, then we should be able to help further Graham
Yaronh You should be able to use a simple If, Then, Else statement in VB to solve this problem. Code: If [YourFieldName] meets some condition Then Me.[YourTextBoxName].Visible = True Else Me.[YourTextBoxName].Visible = False End If Post further information as to what exactly you are trying to do, then we should be able to help further Graham