Oct 21, 2001 #1 keeyean MIS Sep 29, 2001 32 US where should i put this code... if i want the Text1(0) will be highlighted when i open Form1?? Form1.Text1(0).SelLength = Len(Form1.Text1(0).Text)
where should i put this code... if i want the Text1(0) will be highlighted when i open Form1?? Form1.Text1(0).SelLength = Len(Form1.Text1(0).Text)
Oct 21, 2001 #2 oneshadow IS-IT--Management Dec 23, 2004 125 ID How about: In Text1_Gotfocus: Text1.SelLength = Len(Text1.Text) In Form_Load: Call Text1_GotFocus Upvote 0 Downvote