How to add a command button

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

Guest

Hello,
I recently starting using VBA. I'm trying to launch a user form I created.
I inserted this macro
Sub ShowForm(RequestForFunds)
End Sub
But when I try to run the macro the form does not launch.

I also need a book to help me; can someone reccomend a book to help me
learn VBA.
 
Maybe????

Sub ShowForm()
RequestForFunds.show
End Sub

use the correct name for the form
 
Debra Dalgleish has a list of books at her site:
http://www.contextures.com/xlbooks.html

John Walkenbach's is a nice one to start with.

Depending on how advanced you are...

Professional Excel Development
By Stephen Bullen, Rob Bovey, John Green

See if you can find them in your local bookstore/internet site and you can
choose what one you like best.
 

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