R
rob p
I have a userbox with approx. 20 fields that are filled in. An OK button is
coded as such:
-------------
Dim myRange As Range
With ActiveDocument
Set myRange = .Bookmarks("BK1").Range
myRange.Text = TextBox1.Text
.Bookmarks.Add "BK1", myRange
and so on...
End with
coded as such:
-------------
Dim myRange As Range
With ActiveDocument
Set myRange = .Bookmarks("BK1").Range
myRange.Text = TextBox1.Text
.Bookmarks.Add "BK1", myRange
and so on...
End with