Jul 26, 2004 #1 vicktown Technical User Jul 13, 2004 27 CA How do I make a text box have different text based on the value of another variable?
Jul 26, 2004 #2 PHV MIS Nov 8, 2002 53,708 FR of another variable Depend on how the variable changes. Simply set the Value property of the TextBox when you know the variable has a value. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244 Upvote 0 Downvote
of another variable Depend on how the variable changes. Simply set the Value property of the TextBox when you know the variable has a value. Hope This Helps, PH. Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
Jul 26, 2004 #3 mikelev Technical User Mar 23, 2004 223 US This should be placed on the AfterUpdate event for the text box with "value of another variable" If Me.YOUR_VARIABLE_TEXTBOX = "your value" Then Me.YOURTEXTBOX.FontBold End If Cheers, Upvote 0 Downvote
This should be placed on the AfterUpdate event for the text box with "value of another variable" If Me.YOUR_VARIABLE_TEXTBOX = "your value" Then Me.YOURTEXTBOX.FontBold End If Cheers,