Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/24/2013 in all areas

  1. faldo, As long as the exe is not compressed with upx, you can find the string "This is a compiled AutoIt script" within it using any hex editor. So Fileread and StringInStr should do the trick for you - but be careful about which mode you use to open the file, you will need to read it as binary. M23
    2 points
  2. For those who wants to create the help file for the UDF AutoIt_compile_UDF.7z mirror for download 1. http://u.to/hFwxBA 2. http://rghost.ru/48061477 "DynamicSRC" - directory with the files you need to edit "UDF_Help_Builder.au3" - run the compilation Look at the beginning of the file UDF_Help_Builder.au3. Now you can change the language. line 267 (If 0 Then ; Create a temporary file syntax) - when you add a new function to change 1. It generates code in tmpTest. This functionality has recently been added and not automated completely. Edit these files CustomUDFsMgt.txt CustomUDFs_Index.hhk CustomUDFs_TOC.hhc The result of using AutoIt3 source help AutoIt3_UDFs3.7z
    1 point
  3. AZJIO

    My Notepad

    czardas, Fixed Updated Added "drag-and-drop" Added "modification flag" Added "GUISetAccelerators"
    1 point
  4. FireFox

    Hey Guys

    Hey you
    1 point
  5. Another quick, self-contained way. From the shell, run: Unknown.exe /AutoIt3ExecuteLine "MsgBox(0, 'Result', 'Probable AutoIt executable found.')" Note that this will fail if ever the script is purposedly compiled with option #NoAutoIt3Execute OR give a false positive if the program is sneakily written to accept the same arguments while being coded in some other language. Both odds are IMHO fairly safe.
    1 point
  6. No, you didn't see what I did! The faulty function is spic() I update the code from >post#8 again. Have a closer look to it. Br, UEZ
    1 point
  7. Whenever someone says "pls" because it's shorter than "please", I say "no" because it's shorter than "yes".
    1 point
  8. Geir1983, You can get the size of the image and then create the Pic control to be the correct size: #include <GDIPlus.au3> Global $sFileName = "Image_Path" ; <<<<<<<<<<<<<<<<<<<<<<<<< Put your image path here ; Initialize GDI+ library _GDIPlus_Startup() ; Get bitmap $hBitmap = _GDIPlus_BitmapCreateFromFile($sFileName) ; Get size $iX = _GDIPlus_ImageGetWidth($hBitmap) $iY = _GDIPlus_ImageGetHeight($hBitmap) ; Display result MsgBox(0, "Size", $sFileName & @CRLF & @CRLF & $iX & " x " & $iY) ; Clean up resources _GDIPlus_BitmapDispose($hBitmap) ; Shut down GDI+ library _GDIPlus_Shutdown() I hope that helps. M23
    1 point
×
×
  • Create New...