E
Emma Aumack
Hi all,
Can I call a message box from a module? If so, how?
Can I call a message box from a module? If so, how?
Can I call a message box from a module?
If so, how?
John Spencer said:Simplest code
Msgbox "This is a message",,"This is the Title"
If you want to trap the answer
Dim iResponse as integer
iResponse = Msgbox("This is a message", vbYesNo,"Answer the question")
Emma Aumack said:If I had an if statement where I had to trap the response would it look
like:
If iResponse = vbyes
or
if iResponse = true