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?
 
Back
Top