Public sub

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi:

What is the easiest way to run a public sub from a control
button?

Thank you
 
Private Sub YourButton_Click()
YourPublicSubName(<parm list, if any>)
End Sub
 
In your Public Sub, if you have this:
Public Sub(MyArgument As String)
the argument is not optional.

If you want it to be optional, use this:
Public Sub(Optional MyArgument As String)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top