home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / software / vyzkuste / autoit / autoit-v3-setup.exe / AutoItX / main.cpp < prev    next >
C/C++ Source or Header  |  2005-02-04  |  790b  |  28 lines

  1. // Empty project additions:
  2. //        Added "AutoIt3.h" include
  3. //        Added "AutoItX3.lib" to the input linker libraries
  4. //
  5. // AutoItX3.dll needs to be in the run path during execution
  6.  
  7. #include <Windows.h>
  8. #include "AutoIt3.h"
  9.  
  10. int APIENTRY WinMain(HINSTANCE hInstance,
  11.                      HINSTANCE hPrevInstance,
  12.                      LPSTR     lpCmdLine,
  13.                      int       nCmdShow)
  14. {
  15.      // You can now call AutoIt commands, e.g. to send the keystrokes "hello"
  16.     AU3_Sleep(1000);
  17.     AU3_Run("notepad.exe", "", 1);
  18.     AU3_WinWaitActive("Untitled -", "", 0);
  19.     AU3_Send("Hello{!}", 0);
  20.  
  21.     // Get the text in the status bar
  22.     //char szText[1000];
  23.     //AU3_StatusbarGetText("Untitled -", "", 2, szText, 1000);
  24.     //MessageBox(NULL, szText, "Text:", MB_OK);
  25.  
  26.     return 0;
  27. }
  28.