What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » is there any way to display an alert\message box (MsgBox) in a script?

is there any way to display an alert\message box (MsgBox) in a script?
Author: Message:
CookieRevised
Elite Member
*****

Avatar

Posts: 15519
Reputation: 173
– / Male / Flag
Joined: Jul 2003
Status: Away
RE: is there any way to display an alert\message box (MsgBox) in a script?
quote:
Originally posted by billboy1001
is there any way to display an alert\message box in a script?
Forum search "msgbox" or "message box" or "alert":
Alert(MsgBox in VB) Help?
MessageBox parameters/flags
etc.

(aka: always try to search the forums first ;))

quote:
Originally posted by billboy1001
i was trying to use MessageBox instead of MessageBoxW what is the difference?
Windows APIs come often in two versions: an ANSI version and a UNICODE version.

The ANSI versions are suffixed with the letter A.
The UNICODE versions are suffixed with the letter W.

eg: MessageBoxA, MessageBoxW

In case there are two different APIs, you must explicitly use one of the two. Just using "MessageBox" for example will not work as that API with that name doesn't exist.

Ansi is the character set with normal characters (from ascii code 0 to 255). But some languages use other characters or have far more characters than the 26 you're used to. eg: Japanese, Hebrew, etc. For these there is the Unicode set.

So functions which exist as a Unicode version can handle all possible characters. It is preffered that you use the Unicode version of APIs when scripting (unless you have a specific reason not to).
.-= A 'frrrrrrrituurrr' for Wacky =-.
10-21-2006 02:36 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
is there any way to display an alert\message box (MsgBox) in a script? - by Baggins on 10-20-2006 at 09:39 PM
RE: MsgBox - by ins4ne on 10-20-2006 at 09:42 PM
RE: MsgBox - by Baggins on 10-20-2006 at 09:45 PM
RE: MsgBox - by Mike on 10-20-2006 at 09:45 PM
RE: RE: MsgBox - by Baggins on 10-20-2006 at 09:50 PM
RE: is there any way to display an alert\message box (MsgBox) in a script? - by Spunky on 10-20-2006 at 10:20 PM
RE: RE: is there any way to display an alert\message box (MsgBox) in a script? - by Baggins on 10-20-2006 at 10:40 PM
RE: is there any way to display an alert\message box (MsgBox) in a script? - by Spunky on 10-20-2006 at 10:42 PM
RE: is there any way to display an alert\message box (MsgBox) in a script? - by Baggins on 10-20-2006 at 10:43 PM
RE: is there any way to display an alert\message box (MsgBox) in a script? - by CookieRevised on 10-21-2006 at 02:36 AM
RE: is there any way to display an alert\message box (MsgBox) in a script? - by deAd on 10-21-2006 at 02:54 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On