I have activex buttons on my sheet.
i have this code in a module
i have this code on my button click:
I get the error variable not defined.
But the code still works. But always an error message
screenshot:
http://prntscr.com/ndjcod
How to solve this.
I have tried to type
sheet1. before the label and image name
But does not work.
i have this code in a module
Code:
Sub imghidd()
If extinstr1_label.Visible = False Then
extinstr1_label.Visible = True
extimage1_img.Visible = True
Else
extinstr1_label.Visible = False
extimage1_img.Visible = False
End If
End Sub
i have this code on my button click:
Code:
Private Sub Steg1Ext_button_Click()
imghidd
End Sub
I get the error variable not defined.
But the code still works. But always an error message
screenshot:
http://prntscr.com/ndjcod
How to solve this.
I have tried to type
sheet1. before the label and image name
But does not work.