Halt to wait for action on customized form messagebox

M

mkhmer

I want to use a modal form which content phrase in specific Language
(non-English)....to get confirm frm user by asking them to click on the
buttons......so I need the mechanism to halt the run process and wait till
user clicked a button...then continue the process....


Anyone know how to do so? or maybe give me a better idea of using customized
MGSBox in local non-english language.

Thanks,
 
T

TC

Use the DoCmd.OpenForm method to open the form. Include the acDialog
parameter, on the OpenForm call. Then the calling code will stop, until
the user has closed that form.

I don't know how to handle the language issues. You might or might not
be able to do that. If the words are always the same, perhaps you could
use images containing those words?

HTH,
TC (MVP Access)
http://tc2.atspace.com
 
A

Albert D.Kallal

Interesting. I explain how to set a form to halt, wait for input..and then
RETURN values selected from that form in the following

http://www.members.shaw.ca/AlbertKallal/Dialog/Index.html

You could even build a table of prompts, and open the dialog box using a
where clause to display the particular message..and you could even add a
language parameter to that where clause...

dim strStrWhere as string

strWhere = ("msgnum = 10) and (language = 'F') ' msgnum = 10 - select
invoice type to print
docmd.OpenForm "frmCustomDialog",,,strWhere,,acDialog
 
T

TC

The problem with the language part, IMHO, is that he will not
necessarily be able to display, or even just store, any characters in
the language he wants.

For example, he might want to handle arabic text from an english
version of A97. No can do, AFAIK.

TC (MVP Access)
http://tc2.atspace.com
 

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

Top