Hi
I have one textBox on a form that I would like to really stand out so I did the following;
Private Sub Text1_Change()
Text1.FontSize = 18
Text1.FontName = "Arial"
Text1.FontBold = True
End Sub
It worked GREAT except the font of every label / caption on the entire form changed as well. Can I some how make it exclusive to this one TextBox?
Thanks
Randy
I have one textBox on a form that I would like to really stand out so I did the following;
Private Sub Text1_Change()
Text1.FontSize = 18
Text1.FontName = "Arial"
Text1.FontBold = True
End Sub
It worked GREAT except the font of every label / caption on the entire form changed as well. Can I some how make it exclusive to this one TextBox?
Thanks
Randy