Jump to content

ruskiem

Members
  • Posts

    3
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

ruskiem's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. @Decipher Hello, may i ask someone to be that kind and provide example how to zip 2 files using this, im sure wonderfull work, that i just can't figure out how to use yet, i got the attachements, and also got errors with basic example provided by the author, i figured out theres no : _SevenZip_Exec " function, but rather: "_SevenZip_Extract" however i got errors : "Return SetError(@error, "", $aRet[0]) Return SetError(@error, "", $aRet^ ERROR" both when i use mentioned function, or "_SevenZip_CheckArchive" for example: #include "7-Zip.au3" _SevenZip_Load() _SevenZip_CheckArchive("C:\Users\24\Desktop\moto\7-Zip-Library.7z") MsgBox(4096, "aret", $aRet) ; _SevenZip_Free() Exit i got LZMA.au3, memorydll.au3 in the folder as well as in the autoit3/include/ and 7-Zip.au3 in the folder Can i ask for support please? I just need to unzip .zip files, edit texts and zip again, Edit: ok screw it, for the posterity, this works like CHARM: https://www.autoitscript.com/forum/topic/116565-zip-udf-zipfldrdll-library/?tab=comments#comment-813281 Best Regards!  
  2. #include <Array.au3> #include <MsgBoxConstants.au3> Global $i = 0 Global $lineX[5] ;_ArrayDisplay($lineX, "Array dissplay") Global $timerinit_lineX[5] While $i <= 4 ;MsgBox(0, "$i: ", $i, 0) Global $lineX[$i] = "comeon" & $i ;MsgBox(0, "$lineX[$i]", $lineX[$i], 0) Global $timerinit_lineX[$i] = timerinit() $i = $i + 1 sleep(1000) Wend _ArrayDisplay($lineX) ;_ArrayDisplay($timerinit_lineX) MsgBox($MB_SYSTEMMODAL, "Items 1-3", _ArrayToString($lineX, @TAB, 1, 3)) Hello, i want to add "text 0" to $lineX[0] "text 1" to $lineX[1] "text 2" to $lineX[2] "text 3" to $lineX[3] "text 4" to $lineX[4] he does not add, _arrayDisplay does not work what is wrong, please?
×
×
  • Create New...