PDA

View Full Version : Solved: inserting a text box



caz1805
04-16-2006, 01:44 PM
Hi guys,

I have decided a different way to translate the words, but I need to enter a TextBox into a word document. I have tried to create a text box in a word document with a macro recorder and also in visual basic editor but it does not allow me ( well with my basic knowledge).

Any help would be great.


Caz

Jacob Hilderbrand
04-16-2006, 02:32 PM
Well if all you want to do is add a textbox at the current selection then.


Selection.FormFields.Add Range:=Selection.Range, _
Type:=wdFieldFormTextInput

caz1805
04-16-2006, 03:59 PM
Thanks alot. SOLVED.

Jacob Hilderbrand
04-16-2006, 04:08 PM
You're Welcome :beerchug:

Take Care