View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Die_Another_Day Die_Another_Day is offline
external usenet poster
 
Posts: 644
Default Events for Enter/Exit Textboxes on Userforms

Private Sub TextBox1_Enter()

End Sub

Private Sub TextBox1_Exit(ByVal Cancel As MSForms.ReturnBoolean)

End Sub

HTH

Charles

John Fuller wrote:
Are there events that trigger when the focus Enters/Exits a Textbox?
If so, what are they?

Thanks,
John