home *** CD-ROM | disk | FTP | other *** search
/ PCNET 2006 September - Disc 1 / PCNET_CD_2006_09.iso / shareware / autoit-v3-setup.exe / Examples / Helpfile / _ClipPutFile.au3 < prev    next >
Encoding:
Text File  |  2006-06-17  |  233 b   |  8 lines

  1. #include "misc.au3"
  2. Local $fTest
  3. $fTest = _ClipPutFile(@ScriptFullPath)
  4. If Not $fTest Then
  5.     MsgBox(0,"_ClipPutFile() call Failed","@error = " & @error)
  6. Else
  7.     MsgBox(0,"_ClipPutFile()","Content of Clipboard:" & ClipGet())
  8. EndIf