S
Stacy
Hello all... I have a quick question. I am using a in Word that the
user will place a check mark by the "sections" they want to pull up.
Then I use simple vba to pull these sections, combine them, and creat
a document. however, my code is not very clean, and I always end up
with a blank page at the beginning of the document. Anyone know of an
easy way to do this? my basic code is as follows...
If CheckBox11 = True Then
ActiveDocument.ActiveWindow.View.Type = wdMasterView
ActiveDocument.Subdocuments.AddFromFile _
Name:="F:\ITS\TestArea\Page 6"
End If
If CheckBox12 = True Then
ActiveDocument.ActiveWindow.View.Type = wdMasterView
ActiveDocument.Subdocuments.AddFromFile _
Name:="F:\ITS\TestArea\Page 7"
Also, I have no way of returning "back" to form... in case, let's say,
the user forgot to check a box. any ideas?
thanks in advance to anyone who helps.
user will place a check mark by the "sections" they want to pull up.
Then I use simple vba to pull these sections, combine them, and creat
a document. however, my code is not very clean, and I always end up
with a blank page at the beginning of the document. Anyone know of an
easy way to do this? my basic code is as follows...
If CheckBox11 = True Then
ActiveDocument.ActiveWindow.View.Type = wdMasterView
ActiveDocument.Subdocuments.AddFromFile _
Name:="F:\ITS\TestArea\Page 6"
End If
If CheckBox12 = True Then
ActiveDocument.ActiveWindow.View.Type = wdMasterView
ActiveDocument.Subdocuments.AddFromFile _
Name:="F:\ITS\TestArea\Page 7"
Also, I have no way of returning "back" to form... in case, let's say,
the user forgot to check a box. any ideas?
thanks in advance to anyone who helps.