K
kirkm
VB code:
Dim frm As UserForm
For Each frm In UserForms
If frm Is frmLabel Then
If frmLabel.Visible Then Unload frmLabel
End If
Next
This works just fine 99% of the time. But ocassionally errror
frmlabel = <Object variable or With block variable not set>
appears and the line highlighted is
If frm Is frmLabel Then
It's Ok on the next run though.
Anyone know what this might be?
Thanks - Kirk
Dim frm As UserForm
For Each frm In UserForms
If frm Is frmLabel Then
If frmLabel.Visible Then Unload frmLabel
End If
Next
This works just fine 99% of the time. But ocassionally errror
frmlabel = <Object variable or With block variable not set>
appears and the line highlighted is
If frm Is frmLabel Then
It's Ok on the next run though.
Anyone know what this might be?
Thanks - Kirk