donnyh13 Posted Thursday at 08:38 PM Posted Thursday at 08:38 PM (edited) 16 minutes ago, Jos said: so unsure what is missing If I paste those into my Tasks.json, and try running AddIncludes, I get this terminal output: Quote & : The term 'C:\Program Files (x86)\AutoIt3" -Options /addincludes -ScriptFile c:\Users\Owner\Desktop\Testing.au3\Autoit3.exe' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\run_autoit3wrapper.ps1:20 char:3 + & "$autoitPath\Autoit3.exe" "$autoitPath\Scite\AutoIt3Wrapper\AutoIt3 ... + ~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (C:\Program File...au3\Autoit3.exe:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException --Done-- If I change the Tasks.json to: Quote "version": "2.0.0", "tasks": [ { "label": "Add AutoIt Includes", "type": "shell", "command": "${config:autoit.aiPath}/SciTE/AutoIt3Wrapper/run_autoit3wrapper.ps1", "args": ["-File", "${config:autoit.aiPath}/SciTE/AutoIt3Wrapper/run_autoit3wrapper.ps1", "-AutoitPath", "${config:autoit.aiPath}", "-Options", "/addincludes", "-ScriptFile", "${file}"], "presentation": { "reveal": "always", "panel": "shared", "echo": false, "showReuseMessage": false, "clear": true }, "problemMatcher": [], "detail": "Add missing includes to the AutoIt script" }, { "label": "Run Au3Stripper", "type": "shell", "command": "${config:autoit.aiPath}/SciTE/AutoIt3Wrapper/run_autoit3wrapper.ps1", "args": ["-File", "${config:autoit.aiPath}/SciTE/AutoIt3Wrapper/run_autoit3wrapper.ps1", "-AutoitPath", "${config:autoit.aiPath}", "-Options", "/au3stripper", "-ScriptFile", "${file}"], "presentation": { "reveal": "always", "panel": "shared", "echo": false, "showReuseMessage": false, "clear": true }, "problemMatcher": [], "detail": "Strip/Merge your script" } ] } It works. Quote >>13:35:24 Check for missing standard udf include files... ->13:35:25 UDF _Word_Create missing: #include <Word.au3> will be added. >>13:35:25 Check for missing standard constants include files... +>13:35:26 1 include(s) were added at the top. +>13:35:26 AutoIt3Wrapper Finished. --Done-- Edit: except it still doesn't include Message box constants in my previous example I posted. Edited Thursday at 08:45 PM by donnyh13 LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Friday at 11:01 AM Author Developers Posted Friday at 11:01 AM (edited) 14 hours ago, donnyh13 said: If I change the Tasks.json to: Not sure why this is working for you and the other version isn't, but think that it needs a little cleanup, so changed it to: expandcollapse popup{ "version": "2.0.0", "tasks": [ { "label": "Add AutoIt Includes", "type": "shell", "command": "${config:autoit.aiPath}/SciTE/AutoIt3Wrapper/run_autoit3wrapper.ps1", "args": [ "-AutoitPath", "${config:autoit.aiPath}", "-Options", "/addincludes", "-ScriptFile", "${file}" ], "presentation": { "reveal": "always", "panel": "shared", "echo": false, "showReuseMessage": false, "clear": true }, "problemMatcher": [], "detail": "Add missing includes to the AutoIt script", }, { "label": "Run Au3Stripper", "type": "shell", "command": "${config:autoit.aiPath}/SciTE/AutoIt3Wrapper/run_autoit3wrapper.ps1", "args": [ "-AutoitPath", "${config:autoit.aiPath}", "-Options", "/au3stripper", "-ScriptFile", "${file}" ], "presentation": { "reveal": "always", "panel": "shared", "echo": false, "showReuseMessage": false, "clear": true }, "problemMatcher": [], "detail": "Strip/Merge your script" } ] } This version is also working for me and looks a little more straightforward. Edited Friday at 11:09 AM by Jos SOLVE-SMART and donnyh13 1 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
WildByDesign Posted Friday at 11:59 AM Posted Friday at 11:59 AM 58 minutes ago, Jos said: This version is also working for me and looks a little more straightforward. Confirmed working here as well. I like this one better also.
donnyh13 Posted Friday at 08:58 PM Posted Friday at 08:58 PM Works good Jos, thank you! Now just the Dynamic include issue LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Friday at 09:17 PM Author Developers Posted Friday at 09:17 PM 17 minutes ago, donnyh13 said: Now just the Dynamic include issue You mean that you are working on building this in this VSCode extension? 🤗 donnyh13 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
donnyh13 Posted Friday at 10:32 PM Posted Friday at 10:32 PM (edited) 1 hour ago, Jos said: VSCode extension? Not quite! On 2/27/2025 at 1:38 PM, donnyh13 said: Edit: except it still doesn't include Message box constants in my previous example I posted. On 2/27/2025 at 1:02 PM, donnyh13 said: On another note, in a new script in Scite, I'm not getting a drop down for auto completing of variables such as $MB_OK, when there isn't an include added yet (I'm pretty sure it used to?), but I do for AutoIt functions such as _Word_Create, and MsgBox. And when accepting auto-complete of _Word_Create, an include isn't added, which I think it should still, unless I missed a change? And having a script with only the following: _Word_Create() MsgBox($MB_OK, "", "") And pressing CTRL+Shift+Z does not add any includes..... Maybe too much deleting again for your encoding fixes? I haven't done a clean install yet, I'll try that first. Edit: No, still doesn't work. 😕 Edited Friday at 10:42 PM by donnyh13 LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Saturday at 09:19 AM Author Developers Posted Saturday at 09:19 AM (edited) 18 hours ago, donnyh13 said: Not quite! This "only" happens when it is the first variable we search for in a script. Please try this AutoIt3Wrapper.au3, and that example should also work now. Sorry about me being slow to understand that was an issue and only focussing on the PS1 & TASKS issue. EDIT: spend some time today to make the adding of include files process faster and updated the beta to v25.205.1420.5. Please check if that works better/faster for you too. Edited Saturday at 05:13 PM by Jos donnyh13 and SOLVE-SMART 1 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
donnyh13 Posted Sunday at 02:22 AM Posted Sunday at 02:22 AM 16 hours ago, Jos said: Please try Thank Jos, I'll give it a try as soon as I can and report back. And not a problem on missing it, I should have split my complaints Interesting it's such a "rare" problem. I look forward to trying the new beta too. Thanks for your continued work! Much appreciated. LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
donnyh13 Posted Monday at 01:37 PM Posted Monday at 01:37 PM (edited) Hi Jos, I just tried the Wrapper, and I'm getting no difference? Ctrl+Shift+Z and Scite says no Includes to add, run /AddIncludes in VScode and only Word.au3 is added, but not MsgBox Constants.... And the beta is missing? (Sorry I didn't get a chance to download till now. Edited Monday at 01:40 PM by donnyh13 LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Monday at 02:31 PM Author Developers Posted Monday at 02:31 PM (edited) Indeed still a small bug in there... Last tests I did was with multiple variables and that worked, but forgotten to test with a single one. Fixed that in the latest beta version v25.205.1420.6 Thanks for testing and reporting it! 🙂 Quote Starting process #1 "C:\Program Files (x86)\AutoIt3\AutoIt3.exe" "C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3" /addincludes /prod /in "c:\Development\AutoIt3\_VSCODE\damien_AutoIt-VSCode\test.au3" [PID 8816] +>15:28:04 (pid=8816) AutoIt3Wrapper v25.205.1420.5 Task:/addincludes Run-from:Code.exe >>15:28:04 Check for missing standard udf include files... ->15:28:04 UDF _Word_Create missing: #include <Word.au3> will be added. >>15:28:04 Check for missing standard constants include files... ->15:28:04 Const $MB_OK missing: #include <MsgBoxConstants.au3> will be added at the top. +>15:28:05 2 include(s) were added at the top. +>15:28:05 AutoIt3Wrapper Finished. >>Exit code 0 Time: 1.217 Edited Monday at 02:33 PM by Jos donnyh13 and SOLVE-SMART 2 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
donnyh13 Posted Monday at 02:32 PM Posted Monday at 02:32 PM Thanks for the quick fix! SOLVE-SMART 1 LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
donnyh13 Posted Monday at 02:34 PM Posted Monday at 02:34 PM Works in VSCode! But still not Scite? LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Monday at 02:39 PM Author Developers Posted Monday at 02:39 PM 3 minutes ago, donnyh13 said: But still not Scite? When I run from SciTE I get the same: >"C:\Program Files (x86)\AutoIt3\SciTE\..\AutoIt3.exe" "C:\Program Files (x86)\AutoIt3\SciTE\AutoIt3Wrapper\AutoIt3Wrapper.au3" /in "C:\Development\AutoIt3\programs\test\test\test.au3" /addincludes +>15:37:17 Starting AutoIt3Wrapper (pid=6984) 25.205.1420.6 from:SciTE.exe (5.5.5.0) Keyboard:00020409 OS:WIN_11/2009 CPU:X64 OS:X64 Environment(Language:0413) CodePage:0 utf8.auto.check:4 +> SciTEDir => C:\Program Files (x86)\AutoIt3\SciTE UserDir => C:\Users\josva\AppData\Local\AutoIt v3\SciTE\AutoIt3Wrapper SCITE_USERHOME => C:\Users\josva\AppData\Local\AutoIt v3\SciTE >>15:37:17 Check for missing standard udf include files... ->15:37:17 UDF _Word_Create missing: #include <Word.au3> will be added. >>15:37:17 Check for missing standard constants include files... ->15:37:17 Const $MB_OK missing: #include <MsgBoxConstants.au3> will be added at the top. +>15:37:18 2 include(s) were added at the top. >Running AU3Check (3.3.17.1) from:C:\Program Files (x86)\AutoIt3 input:C:\Development\AutoIt3\programs\test\test\test.au3 +>15:37:18 AU3Check ended. rc:0 +>15:37:18 AutoIt3Wrapper Finished. >Exit code: 0 Time: 1.8148 What do you see in the console when running form SciTE? PS: I have it on my list to look at also scanning through the user includes as defined in the registry, but that is currently not the case, but not relevant to this issue. donnyh13 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
donnyh13 Posted Monday at 02:43 PM Posted Monday at 02:43 PM (edited) Does Ctrl+Shift+Z do the correct process? Or Are you using another method? With Debug on, I get this: Quote !07:41:44 AutoItDynamicIncludes->! ===== Start AddMissingIncludes for ALL to current script C:\Users\Owner\Desktop\Testing.au3 -07:41:44 AutoItDynamicIncludes->reload_apis->->reloadproperties: >07:41:44 AutoItDynamicIncludes->>> All:0-46 07:41:44 AutoItDynamicIncludes-> => 0 2 -1 | _Word_Create 0 0 07:41:44 AutoItDynamicIncludes-> => 0 4 2 | MsgBox 4 0 07:41:44 AutoItDynamicIncludes-> -> 0 4 4 | $MB_OK 9 8 07:41:44 AutoItDynamicIncludes-> Add atSourceWords Word $MB_OK :9 07:41:44 AutoItDynamicIncludes->### Start processing found words 07:41:44 AutoItDynamicIncludes-> -> $mb_ok 9 07:41:44 AutoItDynamicIncludes->==> Initial VARIABLE FILE globalconst tableload: 7 07:41:44 AutoItDynamicIncludes->==> Initial VARIABLE STD globalconst tableload: 0 >07:41:44 AutoItDynamicIncludes->> Variable FILE: $mb_ok iFileName: Includename: Includepath: >07:41:44 AutoItDynamicIncludes->> Variable STD: $mb_ok igFileName: gIncludename: gIncludepath: -07:41:44 AutoItDynamicIncludes->- UDFs Processed:0 -07:41:44 AutoItDynamicIncludes->- Global Const Processed:1 > done, no includes to add.(v20251002 0145) Perhaps I am confusing things. Edited Monday at 02:46 PM by donnyh13 LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Monday at 02:49 PM Author Developers Posted Monday at 02:49 PM 2 minutes ago, donnyh13 said: Does Ctrl+Shift+Z do the correct process? You are running the Dynamic version of addincludes, not the "old" AutoIt3Wrapper version as defined in au3.properties: # 35 Add Includes quickly command.name.35.$(au3)=AddIncludesLua command.mode.35.$(au3)=subsystem:lua,savebefore:no command.shortcut.35.$(au3)=Ctrl+Shift+z command.35.$(au3)=InvokeTool AutoItDynamicIncludes.AddMissingIncludes Which I have currently overridden by the SciTEUser.properties : # 35 Add Includes command.35.$(au3)="$(SciteDefaultHome)\..\AutoIt3.exe" "$(SciteDefaultHome)\AutoIt3Wrapper\AutoIt3Wrapper.au3" /in "$(FilePath)" /addincludes command.name.35.$(au3)=AddIncludes command.subsystem.35.$(au3)=0 command.save.before.35.$(au3)=1 command.shortcut.35.$(au3)=Ctrl+Shift+z ...but that means that the dynamic version also has an issue to look at for me. donnyh13 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
donnyh13 Posted Monday at 02:52 PM Posted Monday at 02:52 PM 2 minutes ago, Jos said: currently overridden by the SciTEUser.properties : I can confirm this method works. Sorry for mixing two different processes. LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Monday at 02:55 PM Author Developers Posted Monday at 02:55 PM So tested the LUA version and that is also working fine for me: Console output: + 15:52:49 _Word_Create => Add include:<Word.au3> + 15:52:49 $MB_OK => Add include:<MsgBoxConstants.au3> > Added 2 include(s) at top of the script. (v20250226 1337) Debug Log part: !15:52:49 AutoItDynamicIncludes->! ===== Start AddMissingIncludes for ALL to current script C:\Development\AutoIt3\programs\test\test\test.au3 15:52:49 AutoItIndentFix->BeginEvents->OnStartup->### <<< AutoItIndentFix:OnStartup 15:52:49 AutoItTools->BeginEvents->OnStartup->### <<< AutoItTools:OnStartup 15:52:49 AutoItDynamicIncludes->BeginEvents->OnStartup->### <<< AutoItDynamicIncludes:OnStartup 15:52:49 AutoItIndentFix->BeginEvents->OnStartup->### <<< AutoItIndentFix:OnStartup 15:52:49 AutoItTools->BeginEvents->OnStartup->### <<< AutoItTools:OnStartup 15:52:49 AutoItDynamicIncludes->BeginEvents->OnStartup->### <<< AutoItDynamicIncludes:OnStartup -15:52:49 AutoItDynamicIncludes->reload_apis->->reloadproperties: >15:52:49 AutoItDynamicIncludes->>> All:0-40 15:52:49 AutoItDynamicIncludes-> => 0 0 -1 | _Word_Create 15 0 15:52:49 AutoItDynamicIncludes-> Add atSourceWords Word _Word_Create :15 15:52:49 AutoItDynamicIncludes-> => 0 2 0 | MsgBox 4 0 15:52:49 AutoItDynamicIncludes-> -> 0 2 2 | $MB_OK 9 8 15:52:49 AutoItDynamicIncludes-> Add atSourceWords Word $MB_OK :9 15:52:49 AutoItDynamicIncludes->### Start processing found words 15:52:49 AutoItDynamicIncludes-> -> _word_create 15 15:52:49 AutoItDynamicIncludes->==> Initial STD tableload: 3589 >15:52:49 AutoItDynamicIncludes->> STD Func: _word_create word.au3 Word.au3 C:\Program Files (x86)\AutoIt3\include\ +>>>>>>>>> Console:+ 15:52:49 _Word_Create => Add include:<Word.au3> 15:52:49 AutoItDynamicIncludes-> -> $mb_ok 9 15:52:49 AutoItDynamicIncludes->==> Initial VARIABLE FILE globalconst tableload: 226 15:52:49 AutoItDynamicIncludes->==> Initial VARIABLE STD globalconst tableload: 13673 >15:52:49 AutoItDynamicIncludes->> Variable FILE: $mb_ok iFileName: Includename: Includepath: >15:52:49 AutoItDynamicIncludes->> Variable STD: $mb_ok igFileName: msgboxconstants.au3 gIncludename: MsgBoxConstants.au3 gIncludepath: C:\Program Files (x86)\AutoIt3\include\ +>>>>>>>>> Console:+ 15:52:49 $MB_OK => Add include:<MsgBoxConstants.au3> -15:52:49 AutoItDynamicIncludes->- UDFs Processed:1 -15:52:49 AutoItDynamicIncludes->- Global Const Processed:1 Maybe try the latest version as you seem to run a bit older one? SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
donnyh13 Posted Monday at 03:00 PM Posted Monday at 03:00 PM (edited) I've ran the latest beta installer, and then copied the newer Scite /scintilla etc files. Am I missing some separate files you modified? Edit: Beta installer: 25.205.1420.4 Scite 5.5.5 Edit2: I don't see a newer version of DynamicIncludes on the Downloads site, perhaps I'm missing it? Edited Monday at 03:06 PM by donnyh13 LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Developers Jos Posted Monday at 03:13 PM Author Developers Posted Monday at 03:13 PM (edited) 13 minutes ago, donnyh13 said: I've ran the latest beta installer, and then copied the newer Scite /scintilla etc files. Am I missing some separate files you modified? Not sure, so just made an updated Beta installer that contains SciTE 5.5.5 and the latest of AutoIt3Wrapper and LUA scripts ...just to make sure. Haven't updated the helpfile history yet...... Edited Monday at 03:14 PM by Jos donnyh13 1 SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
donnyh13 Posted Monday at 03:26 PM Posted Monday at 03:26 PM (edited) Still not working, but my version is still off? Quote > done, no includes to add.(v20252602 0537) I'll try another clean install. Edit: No, still doesn't work. Quote !08:30:12 AutoItDynamicIncludes->! ===== Start AddMissingIncludes for ALL to current script C:\Users\Owner\Desktop\Testing.au3 08:30:12 AutoItIndentFix->BeginEvents->OnStartup->### <<< AutoItIndentFix:OnStartup 08:30:12 AutoItDynamicIncludes->BeginEvents->OnStartup->### <<< AutoItDynamicIncludes:OnStartup 08:30:12 AutoItIndentFix->BeginEvents->OnStartup->### <<< AutoItIndentFix:OnStartup 08:30:12 AutoItDynamicIncludes->BeginEvents->OnStartup->### <<< AutoItDynamicIncludes:OnStartup -08:30:12 AutoItDynamicIncludes->reload_apis->->reloadproperties: >08:30:12 AutoItDynamicIncludes->>> All:0-46 08:30:12 AutoItDynamicIncludes-> => 0 2 -1 | _Word_Create 0 0 08:30:12 AutoItDynamicIncludes-> => 0 4 2 | MsgBox 4 0 08:30:12 AutoItDynamicIncludes-> -> 0 4 4 | $MB_OK 9 8 08:30:12 AutoItDynamicIncludes-> Add atSourceWords Word $MB_OK :9 08:30:12 AutoItDynamicIncludes->### Start processing found words 08:30:12 AutoItDynamicIncludes-> -> $mb_ok 9 08:30:12 AutoItDynamicIncludes->==> Initial VARIABLE FILE globalconst tableload: 3 08:30:12 AutoItDynamicIncludes->==> Initial VARIABLE STD globalconst tableload: 0 >08:30:12 AutoItDynamicIncludes->> Variable FILE: $mb_ok iFileName: Includename: Includepath: >08:30:12 AutoItDynamicIncludes->> Variable STD: $mb_ok igFileName: gIncludename: gIncludepath: -08:30:12 AutoItDynamicIncludes->- UDFs Processed:0 -08:30:12 AutoItDynamicIncludes->- Global Const Processed:1 > done, no includes to add.(v20252602 0537) _Word_Create() MsgBox($MB_OK, "", "") Edited Monday at 03:31 PM by donnyh13 LibreOffice UDF ; Scite4AutoIt Spell-Checker Using LibreOffice Spoiler "Life is chiefly made up, not of great sacrifices and wonderful achievements, but of little things. It is oftenest through the little things which seem so unworthy of notice that great good or evil is brought into our lives. It is through our failure to endure the tests that come to us in little things, that the habits are molded, the character misshaped; and when the greater tests come, they find us unready. Only by acting upon principle in the tests of daily life can we acquire power to stand firm and faithful in the most dangerous and most difficult positions."
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now