Oct 5, 2007 #1 ljpitre Programmer Sep 14, 2007 5 US Is there a way in VB 6 to determine if a textbox has focus?
Oct 5, 2007 #2 JoeAtWork Programmer Jul 31, 2005 2,285 CA Code: If Me.ActiveControl = Text1 Then MsgBox "Has focus" Else MsgBox "Doesn't have focus" End If Upvote 0 Downvote