Thanks, Doug. Yes, I've tried it in the following way:
myfieldname.SetFocus but still with no luck - the cursor just goes to
the end of the words brought in from the bookmarked area.
Roderick
This appears to do it:
TextBox1.SelStart = 0
TextBox1.SelLength = Len(TextBox1.Text)
TextBox1.SetFocus

Signature
Please respond to the Newsgroup for the benefit of others who may be
interested. Questions sent directly to me will only be answered on a paid
consulting basis.
Hope this helps,
Doug Robbins - Word MVP
> Thanks, Doug. Yes, I've tried it in the following way:
> myfieldname.SetFocus but still with no luck - the cursor just goes to
[quoted text clipped - 3 lines]
>
>>Have you tried using SetFocus on the field?
Roderick O'Regan - 05 Feb 2005 23:38 GMT
It works! Thanks Doug.
When one reads what the code is saying it's blindingly obvious!
Regards
Roderick
>This appears to do it:
>
>TextBox1.SelStart = 0
>TextBox1.SelLength = Len(TextBox1.Text)
>TextBox1.SetFocus