Jump to content

meokey

Members
  • Posts

    14
  • Joined

  • Last visited

Everything posted by meokey

  1. Yes, you are right. the __WinHttpMIMEAssocString function in WinHTTP.au3 UDF has a very long string. Thanks a lot.
  2. the /sci 9 shows more detailed log as below - I don't think there are long line in winhttpconstants.au3......... weird.... 0.30 ==> Start Add_Include: Include_Rec$:#include "WinHTTP.au3" ; include HTTP library 0.30 ==> Loading Include file into source Array: winhttp.au3 0.30 ==> Start Add_Include: Include_Rec$:#include "WinHttpConstants.au3" 0.30 ==> Loading Include file into source Array: winhttpconstants.au3 !File contains records longer than 2047 .. stopping process. !Ending Obfuscator program. !>15:33:31 Obfuscator ended with errors, using original scriptfile.rc:999
  3. >Running Obfuscator (1.0.28.7) from:C:\Program Files (x86)\AutoIt3\SciTE cmdline: !File contains records longer than 2047 .. stopping process. !Ending Obfuscator program. !>15:04:14 Obfuscator ended with errors, using original scriptfile.rc:999 >Running Obfuscator (1.0.28.11) from:C:\Program Files (x86)\AutoIt3\SciTE cmdline: !File contains records longer than 2047 .. stopping process. !Ending Obfuscator program. !>15:08:30 Obfuscator ended with errors, using original scriptfile.rc:999 what does it mean?
  4. is there anyway to use 7-zip32.dll to compress/decompress a binary/string than files? such as : $orig = "aaaaaaaaaaaaaaaa" ; or $orig = StringToBinary("aaaaaaaaaaaaaaaa") $compressed = _7zip_compress($orig) $decompressed = _7zip_decompress(compressed)
  5. Thanks for your help. Sorry, I missed a key info in the first post which is the buffx has to be 4096 bytes because it will be used to create a hash string -- will it make any difference in Autoit? Thanks szHash = cmd5.GetMD5((BYTE*)buffx, strlen(buffx)).c_str();
  6. I came across C code like below and failed to translate it to autoit to get the value of buffx. Would you please help me out? Thanks a lot #define UNIQU_HASH_SIZE 512 #define CLIENTKEY "%d%s%s%s" ... char* szTerm2; char* szTerm3; int number = 0; number=1234; szTerm2="abc"; free(szTerm3); memset(uniqueIDHash,0,UNIQU_HASH_SIZE); sprintf_s(buffx, 4096, CLIENTKEY , number, szTerm2, szTerm3, uniqueIDHash);
  7. Thanks Martin and Jos. This is exactly what I want.
  8. will this help? dim $i for $i=1 to 10 ........... next or dim $i=1 while $i<=10 ..... $i=$i+1 wend
  9. try: FileCreateShortcut ( "http://www.google.com", @DesktopDir&"\google homepage.lnk")
  10. Thanks for replying, but sorry I didn't make myself clear. I want to put $var into the string, and assign it LATER when I know what's $var. OK, I modify the code a little: ; test $inifile="test.ini" IniWrite($inifile, "English", "string1", '"There is a(an) " & $var & " in the box."') dim $aaa $var="apple" Assign("aaa",IniRead($inifile,"English","string1", "")) MsgBox(0, "", $aaa) $var="pear" Assign("aaa",IniRead($inifile,"English","string1", "")) MsgBox(0, "", $aaa)
  11. Is it possible to make the following work? Thanks. ; test $inifile="test.ini" IniWrite($inifile, "English", "string1", '"There is a(an) " & $var & " in the box."') dim $aaa $var="apple" Assign("aaa",IniRead($inifile,"English","string1", "")) MsgBox(0, "", $aaa)
  12. I'm also struggling in getting the text from the control AfxFrameOrView. anyone help please ?
  13. what's about returning 0 and I'm sure it's not a checkbox? I got the following info from Auto3Info: Class: AfxFrameOrView42u ClassnameNN: AfxFrameOrView42u2 Advanced (Class): [CLASS:AfxFrameOrView42u; INSTANCE:2] ID: 119 Style: 0x50000000 ExStyle: 0x00000000
  14. I dont know why but it seems do not work on Vista as well as it does on XP.
×
×
  • Create New...