This was a similar thread, but still no luck. What causes this error? “Runtime error 380: Invalid property value”
This program has been out for years running on XP ~ Win8
A recent installation on a Vista Home Premium laptop is producing this error.
Here is the last code before the error:
On Local Error Resume Next
fSetup.Show
If Err.Number <> 0 Then MsgBox Err.Description, vbCritical
On Local Error GoTo 0
It does not it to the if clause.
In the form load of the target form, it never makes it to the If clause
If bTestMode Then MsgBox "Setting me.tag", vbOKOnly
Me.Tag = "FormLoad"
If bTestMode Then MsgBox "Me.Tag Set", vbOKOnly
If bTestMode Then MsgBox "Setting me.tag", vbOKOnly
Me.Tag = "FormLoad"
If bTestMode Then MsgBox "Me.Tag Set", vbOKOnly
Thank you in advance.