declaring a msgbox

  • Thread starter Thread starter Tracey
  • Start date Start date
T

Tracey

Hello, I'm writing my first function using both an inputbox and
msgbox. Do I have to declare them at the beginning of the procedure?
i.e. dim msgbox as variant

Also, after doing this and using the F8 function to do a trial ru
through the code to see how it executes, it appears that the sub wor
at the beginning of the function causes a problem. Is it that thi
cannot qualify as a subprocedure? What should I do instead?

Thank you in advance.
Trace
 
Hello, I'm writing my first function using both an inputbox and a
msgbox. Do I have to declare them at the beginning of the procedure?
i.e. dim msgbox as variant

Also, after doing this and using the F8 function to do a trial run
through the code to see how it executes, it appears that the sub word
at the beginning of the function causes a problem. Is it that this
cannot qualify as a subprocedure? What should I do instead?

Thank you in advance.
Tracey

The problem is that you're treating 'msgbox' as a variable - it's not,
it's a built-in function. The proper usage of msgbox is either of the
following two:
Msgbox "Message"
x = Msgbox ("Message")

The second one is what you use if you want to know what button was
pressed - there are named constants (VbOk, VbYes, etc) that identify
which one.
 

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