How to use "UsrMsg"

  • Thread starter Thread starter vepha
  • Start date Start date
Vepha,

First of all, you would need to copy/paste the code from Graham Seach's
article into a standard module in your application. Note that it
requires a Reference set to ADO.

Then, in the appropriate place in your application, you can write the
equivalent of this into a VBA event procedure:

Call UsrMsg("This is the text of the message you want to show to your
users.")
 
Something like?:

Dim UsrMsg As Module
Call UsrMsg("This is the text of the message you want to show to your
users.")

Ana
 
Ana,

No. "Dim UsrMsg As Module" doesn't mean anything or achieve anything.
Just drop that bit.

Perhaps you could explain what the problem is? Did you try what I
explained before? Didn't it work? What was wrong?
 

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