home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / autoit-v3-setup.exe / Examples / DllClose.au3 < prev    next >
Text File  |  2005-01-30  |  154b  |  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.