I have sub procedures which only contains one line, e.g. frmUserForm.Show. Is it possible to write a sub function in a way like
the code above results in an error because I haven't ended the procedures correctly.
Code:
Public Sub MySubProcedure(arg As Double): frmUserForm.Show
the code above results in an error because I haven't ended the procedures correctly.