Hi,
I'm using this code to tell the user to choose something from the list provided but every time you open the document it's like starting all over!
Code:
If ActiveDocument.ComboBox8.Value = "-Select-" Or ActiveDocument.ComboBox8.ListIndex = -1 Then
MsgBox "Please select from list provided."
Exit Sub
End If
We open the doc, choose from the list, close the doc. The next time we open the doc and try to close it it tells us to choose from the list again!!!

Why?!?
Please help.