View Single Post
 
Old 10-23-2011, 02:53 AM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,467
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Hi hklein,

Although you've posted in the Userforms group, your post referred to fields, so I wasn't sure whether you're using a userform or formfields. Since it seems you're using a userform, it's easy enough to use the 'Enter' event to display your help somewhere. For example:
Code:
Private Sub TextBox1_Enter()
 StatusBar = "Hello"
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote