Hi
To select text in a textbox control, you just need to specify the start and length of the selection, in characters. Paste this code into the form.load event handler, or wherever you want it..
'set selection start to char 0
Text1.SelStart = 0
'set selection length to the length of whatever's in the text box
Text1.SelLength = Len(Text1.Text)
Hope this helps
Alan