Jump to content

joiner

Active Members
  • Posts

    25
  • Joined

  • Last visited

Everything posted by joiner

  1. Thanks for your participation. Yes, you probably won't get such a bug. The user of my project said that the project works fine for the vast majority of people. In my system, the main process is in standby mode and quickly responds to the command of the child script. I did the project on different computers and systems. I have never encountered such a bug That's why I decided that it was the operating system's fault. Okay, thanks again for the answers. Maybe someone will suggest another reason I'll leave a link to the source codes. Compilation in a3x files for compilation: controlw_def fileprjt_def JMPACK _def unmod_def The fileprjt_def file is an installation file. It works when installing files in the desired folder. Launch after compilation - click on the RunJMPack.bat file The official version of Inno Setup is in the CompilerISS folder. This program is a shell for the project, the parent process. The download example is in the Project folder. This can be compiled into an executable file. The language folder contains translations of the program interface. When you launch the program, select your language. I want to assure you that my program does not corrupt other people's files, does not serve to hack programs, and is not a bot or clicker. Thank you download
  2. the program is launched from the system disk. The required folder is located on the system disk ssd disk the path search occurs in the system registry
  3. real time scanning disabled
  4. Hello everyone. Perhaps my question is more about the OS than autoit. Project: files are packed into archives, then all this is packed into Inno Setup via its script. When launched, Inno Setup unpacks some of the files into a temporary folder and launches "autoit3.exe file.a3x". The last file creates a graphical autoit window. Automatically searches for a path to a specific folder. Next, the window selects files for unpacking. At this time, Inno Setup is waiting for a list of files. Mutex is used. And when you click the "install" button (unpacking additional files from Inno Setup), the Inno Setup process is in "paused" mode. Everything freezes. If you select the path manually, there is no freeze. For some, this does not help. If you run the autoit file from a temporary folder manually, there is no freeze. Decided that the problem was in Inno Setup (latest version) I used another option - only autoit works, extracts files from itself and runs "autoit3.exe file.a3x". Again, it freezes. If I run it manually from a folder, it works without problems. But if I create a .bat command file and run "autoit3.exe file.a3x", it freezes again. Now an important point: this has not been observed for several years of the project's work. And everything works fine on my computers and still works amazingly. This problem occurred to some users. A small number. As one of them said, in more than 90% of cases the code works for everyone. Is the problem in the OS? Different builds with reduced functionality? Why does the system put the parent process in the "suspended" state? Moreover, in this mode the parent process begins to strain the computer's processor up to 20-30%. Running as administrator or regular user does not solve the problem Windows 10-11 operating systems Used udf _GDIPlus_StripProgressbar.au3 Bass.au3
  5. Hello, I saw a problem. The script does not exit. Which function exits the library PSCRIPT.dll?
  6. solution: yellow - 0x00FFFF but in autoit it is Cyan
  7. Hello print to pdf file does not print yellow. Why? #include <printMGv2.au3> _TextToPrint('CutePDF Writer') Func _TextToPrint($sNamePrint) Local $aTextP = FileReadToArray(@ScriptDir & '\text.txt') Local $hOD = _PrintDllStart() _PrintSelectPrinter($hOD, $sNamePrint) _PrintPageOrientation($hOD, 1) _PrintStartPrint($hOD) Local $y = 60, $iC = 0 Local $aCol[4] = [0xFF0000, 0x0000FF, 0xFFFF00, 0x000000];blue red yellow black For $n = 0 To UBound($aTextP) - 1 If $iC = 4 Then $iC = 0 _PrintSetFont($hOD, 'Courier', 12, $aCol[$iC]) $iC += 1 _PrintText($hOD, $aTextP[$n], 35, $y) $y += 43 Next _PrintEndPrint($hOD) _PrintNewPage($hOD) _PrintDllClose($hOD) EndFunc ;==>_TextToPrint
  8. Hello. How to get a page? https://google.com/search?q=smail&tbm=isch&source=lnt&tbs=isz:ex,iszw:500,iszh:500
  9. ver. AutoIt 3.3.12.0 #include <Array.au3> Local $aArray_1[1] Local $aArray[0][2] $aArray_1[0] = 'string' & @CRLF & 'string' _ArrayAdd($aArray, 'string' & '|' & _ArrayToString($aArray_1, '<>')) There is no error in version 3.3.14.5 I apologize, the theme for the old version AutoIT
  10. This is an example of the formation of arrays. I will not pester you with questions. Waiting for updates from the user of my program
  11. Local $sortmod[0][2], $sortdis[0][2], $sortothers[0][2], $picdis[0][2] Local $ksgtc = $objc.Keys() For $i = 0 To UBound($ksgtc) - 1 $gtitm = $objc.Item($ksgtc[$i]);always array If $gtitm[0] == 'mod' Then ;~ _GETCHNIT($sortmod, $ksgtc[$i], $i) Else If $gtitm[9] = 128 Then If $gtitm[0] == 'pic' Or $gtitm[0] == 'ico' Then _ArrayAdd($picdis, $i & '|' & _ArrayToString($gtitm, '<>')) Else _ArrayAdd($sortdis, $i & '|' & _ArrayToString($gtitm, '<>')) EndIf Else _ArrayAdd($sortothers, $i & '|' & _ArrayToString($gtitm, '<>')) EndIf EndIf Next this is the part of the code that causes the error Jos, thank
  12. sorry, it was not exactly expressed if the data is incorrect, the function(_ArrayAdd) should return an error ;~ array.au3 If Not IsArray($avArray) Then Return SetError(1, 0, -1) $vValue - always string when I am mistaken, it points to my line, but not to a line in udf Thanks for the discussion. I will think
  13. 3.3.12.0 use Local $aArray[0][2] _ArrayAdd($aArray, $i & '|' & _ArrayToString($aArray_1, '<>')) user of my program sent this error. I can not repeat the error other users don't have this error windows 10 Array.au3
  14. this is a project. over 3000 lines of main code the error is not in my code, but in the library what reasons can be?
  15. AutoIT 3.3.12.0 Array.au3 - original how is that?
  16. thank you melba23 your idea helped implemented a single selection of sub items code is far from ideal like my english)) TreeViewRCH.7z
  17. BitOR($COMPRESSION_FORMAT_XPRESS_HUFF, $COMPRESSION_ENGINE_MAXIMUM);@error - 10, @extended - C00000E8 why is it problem?
  18. Thank you, but not so My project
  19. an example of what I want GUITreeViewEx.7z
  20. You understood me Whether but it is possible to realize the principle - a choice only of one subparagraph. In the others tags automatically are removed
  21. Good afternoon You can add a function that will remove the check mark in another subparagraph. How does it work when using two or more radio buttons in a group Excuse for machine translation
  22. The code wrote in version 3.3.12.0 - no problem Local $hBase = FileOpen($Base);I used different parameter values of "mode" - the error remains If $hBase = -1 Then Return 2 FileSetPos($hBase, 12, 0) Local $sReadPage = FileRead($hBase, $nSizePage);returns not the textWhen testing in version 3.3.13.19-20 --- problem(error)Any additional dances with a tambourine aren't registered in help to the beta-version.Another is important - when it is corrected?
  23. in version 3.3.13.20 ticket problem #2901 isn't solved problem with allocation of memory and a mistake when reading the file simply nullify work with file system in new versions of language I from the Russian-speaking forum AutoIT. our subject on language problems http://autoit-script.ru/index.php?topic=359.msg117141;topicseen#new I ask to excuse for machine translation
×
×
  • Create New...