I may have seen the solution to my problem a while back but of course I
cannot located it now. Sorry if this is a duplicate question.

Word 2003
Form with default text in text boxes.

I would like to have the selected text box text highlighted in blue like it
does in windows. The user could just overtype the default text.


Thank-you,


--
Thank-you and all suggestions are appreciated.

Re: "Highlight" selected text boxes by Ben

Ben
Tue May 10 00:53:30 CDT 2005

Try...

With frmName.txtTextBoxName
.SetFocus
.SelStart = 0
.SelLength = Len(frmName.txtTextBoxName)
End With


"Anauna" <Anauna@discussions.microsoft.com> wrote in message
news:36BDE11F-A809-483A-A5FB-62FDDB4F64EC@microsoft.com...
> I may have seen the solution to my problem a while back but of course I
> cannot located it now. Sorry if this is a duplicate question.
>
> Word 2003
> Form with default text in text boxes.
>
> I would like to have the selected text box text highlighted in blue like
it
> does in windows. The user could just overtype the default text.
>
>
> Thank-you,
>
>
> --
> Thank-you and all suggestions are appreciated.