home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 January / PCWELT_1_2006.ISO / pcwsoft / autoit-v3-setup.exe / Examples / DllOpen.au3 < prev    next >
Encoding:
Text File  |  2005-01-30  |  154 b   |  4 lines

  1. $dll = DllOpen("user32.dll")
  2. $result = DllCall($dll, "int", "MessageBox", "hwnd", 0, "str", "Some text", "str", "Some title", "int", 0)
  3. DllClose($dll)
  4.