is there a way to change the template vb uses to create new subs and functions so when i close Add Procedure dialog instead of
Public Sub Main()
End Sub
i'll get, for instance:
Public Sub Main()
On Error GoTo error_handler
error_handler:
MsgBox "Error!"
End Sub
thanks.
Public Sub Main()
End Sub
i'll get, for instance:
Public Sub Main()
On Error GoTo error_handler
error_handler:
MsgBox "Error!"
End Sub
thanks.