Jump to content

Lite

Members
  • Posts

    6
  • Joined

  • Last visited

Lite's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hello How is it possible to convert a 64 bit integer number to hex. e.g. dec: 1152921504606846970 ---> hex FFFFFFFFFFFFFFA the autoit syntax: $val = hex($val) is limited and not work with big numbers. can anybody help. Regards Lite
  2. Thanks Yashied for your reply. The upx.packer dont work on native 64bit autoit.exe files. i test it. work only with win32 compiled on Win os64. here is the supported os-list: http://upx.sourceforge.net/#overview Only linux AMD64 are supported, not Windows AMD64. Regards lite
  3. Hello Guys Know anybody a free 64 Bit Exe-Packer for autoit.exe Files. Upx.exe work only with 32Bit Files. :-( Regards Lite
  4. Hello Autoit Community I have Problem with DriveGetDrive( "NETWORK") on Windows Vista and Windows 7. If start the same code with #RequireAdmin on Computer then DriveGetDrive( "NETWORK") faild. without works it perfect. Can everbody help ? Tested with Autoit V3.3.2.0 Is it Autoitbug ? ; (with #RequireAdmin ) Does not work on Win Vista / Win 7 #RequireAdmin $var = DriveGetDrive( "NETWORK") if not @error then For $i = 1 to $var[0] $maped_path=DriveMapGet($var[$i]) msgbox(0,$var[$i],$maped_path) Next endif exit ; (without #RequireAdmin )work on Win Vista / Win 7 $var = DriveGetDrive( "NETWORK") if not @error then For $i = 1 to $var[0] $maped_path=DriveMapGet($var[$i]) msgbox(0,$var[$i],$maped_path) Next endif exit Regards lite
  5. Hello How can check, if UAC is Active ? like require the state of UAC. maybe can check, running service, registry, or dll call. Yashied you are right. the regkey: $strReg = "HKLM64\Software\Microsoft\Windows\CurrentVersion\Policies\System" the settings are activ after reebot. regards lite
  6. Hello Forum I have a question. is it possible in Autoit make a Treeview control with Radioboxes ? The Category-Entry must without a checkbox, only Radio have a Checkbox. - Category1 [ O] Radio-1 [ O] Radio-2 [ O] Radio-3 - Category2 [ O] Radio-1 [ O] Radio-2 [ O] Radio-3 here a Photo example: http://delphi.about.com/library/graphics/092104_1.gif Regards Lite
×
×
  • Create New...