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