Jump to content

API MessageBox


rasim
 Share

Recommended Posts

#include <GUIConstants.au3>
Opt("GuiOnEventMode", 1)

Global Const $MB_OK = 0x00000000

$hwnd = GUICreate("Test", 200, 100)
GUISetOnEvent($GUI_EVENT_CLOSE, "OnExit")

$button = GUICtrlCreateButton("Go", 10, 10, 50, 25)
GUICtrlSetOnEvent(-1, "Dll")

GUISetState()

Func Dll()
    DllCall("user32.dll", "int", "MessageBox", $hwnd, "Hello world", 0, $MB_OK)
EndFunc

While 1
    Sleep(100)
WEnd

Func OnExit()
    Exit
EndFunc

Link to comment
Share on other sites

Almost... You didn't declare the paramater types... :)

#include <GUIConstants.au3>
Opt("GuiOnEventMode", 1)

Global Const $MB_OK = 0x00000000

$hwnd = GUICreate("Test", 200, 100)
GUISetOnEvent($GUI_EVENT_CLOSE, "OnExit")

$button = GUICtrlCreateButton("Go", 10, 10, 50, 25)
GUICtrlSetOnEvent(-1, "Dll")

GUISetState()

Func Dll()
    DllCall("user32.dll", "int", "MessageBox", "hwnd", $hwnd, "str", "Some text", "str", "Some title", "int", $MB_OK)
EndFunc

While 1
    Sleep(100)
WEnd

Func OnExit()
    Exit
EndFunc
Edited by Bert
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...