i have a statement:
on error go to label
however i would like to pass into the label the variable which caused the error
is this possib
Declare global variables and use them in the code and in your error code.
Public global_variable1 As Integer Public global_variable2 As String Private Sub Btn1234_Click() .... end sub Err_abcd: .... End Sub