If passForm.Name = "frmInvoice" Then
With objWord
' Page 1
.ActiveDocument.Shapes("WordArt 6").Select
.Selection.ShapeRange.TextEffect.Text = " "
' Page 2
.ActiveDocument.Shapes("WordArt 8").Select
.Selection.ShapeRange.TextEffect.Text = " "
End With
Else
If Invoiced = True Then
' Page 1
.ActiveDocument.Shapes("WordArt 6").Select
.Selection.ShapeRange.TextEffect.Text = "Reprint"
' Page 2
.ActiveDocument.Shapes("WordArt 8").Select
.Selection.ShapeRange.TextEffect.Text = "Reprint"
Else
' Page 1
.ActiveDocument.Shapes("WordArt 6").Select
.Selection.ShapeRange.TextEffect.Text = "Not Invoiced"
' Page 2
.ActiveDocument.Shapes("WordArt 8").Select
.Selection.ShapeRange.TextEffect.Text = "Not Invoiced"
End If
End If