Hello, I'm new here and have a problem with Excel 2003. I do not know
VB at all, so this is throwing me off.

I have a user, in closing any file, even just a blank new file, that is getting the following:
"Microsoft
VB Runtime error 438: Object doesn't support this property or method"
There hasn't been any change, except Windows Updates run yesterday October 14th, but it started around Oct. 9th. Before updates on Oct. 14th, the next previous updates were run in the beginning of September. The debugger asks if you want to debug the error, saying yes brings up the following:
Sub SaveMacro()
If IntState = "ON" Then
If ActiveWorkbook.Path = "" Then 'if unnamed...call Save As.
SaveNewDoc ActiveWorkbook
Else 'it already has a name so save it.
DocIsReadOnly = ActiveWorkbook.ReadOnly
If DocIsReadOnly Then 'if it is a ReadOnly document then call Save As
SaveNewDoc ActiveWorkbook
Else 'otherwise just save it.
ActiveWorkbook.Save
SetIsDirty ActiveWorkbook, False
End If
End If
Else
ActiveWorkbook.Save
End If
End Sub
The debugger flags the red line as being messed up. I'm a complete newb when it comes to
VB. I'll admit that

Any help would be appreciated :-) Thanks in advance.
