E elfranzen Registered User. Local time Today, 08:07 Joined Jul 26, 2007 Messages 93 Feb 5, 2008 #1 After I do a setfocus I don’t want the field to be all highlighted can I have a VB code to have replicate the right arrow or something of that nature? Thanks
After I do a setfocus I don’t want the field to be all highlighted can I have a VB code to have replicate the right arrow or something of that nature? Thanks
boblarson Smeghead Local time Today, 08:07 Joined Jan 12, 2001 Messages 32,040 Feb 5, 2008 #2 Yes, just use this: Code: With Me.TextBoxNameHere .SelStart = Len(Me.TextBoxNameHere) .SelLength = 0 End With
Yes, just use this: Code: With Me.TextBoxNameHere .SelStart = Len(Me.TextBoxNameHere) .SelLength = 0 End With