-
Posts
34,728 -
Joined
-
Days Won
337
Jos last won the day on April 3
Jos had the most liked content!
About Jos

Profile Information
-
Member Title
Je maintiendrai
Recent Profile Visitors
21,588 profile views
Jos's Achievements
-
SciTE - Clearing all bookmarks / inline erros automatically
Jos replied to corgano's topic in AutoIt General Help and Support
You can send messages to the SciTE Director interface. It is described in the documentation, and that is what the autoit3wrapper, tidy and au3stripper are using to communicate to the active scite session. -
SciTE - Clearing all bookmarks / inline erros automatically
Jos replied to corgano's topic in AutoIt General Help and Support
It should always clear the output pane with this setting will. You can also use the director interface to clear any inline bookmarks/errors when this is what you are looking for. This is what I do in AutoIt3Wrapper to clear the inline messages: If $RunBySciTE Then _SendSciTE_Command($My_Hwnd, $SciTE_hwnd, "extender:dostring scite.SendEditor(SCI_ANNOTATIONCLEARALL)") -
Jos reacted to a post in a topic: Another AutoIt extension for Visual Studio Code
-
argumentum reacted to a post in a topic: Easy if and else
-
Just THINK and RTFM in an effort to understand your own code. comeback when you have some progress to show for.
-
Somerset reacted to a post in a topic: Easy if and else
-
No shit, Yuchan is back.... This isn't going to end well.
-
Guess you haven't tried to run that, as it won't run! Also, please try to make your code better readable by tidying it with proper indentations: Global $ok2 = True Global $ok3 = True MsgBox(0, '$ok2', $ok2) MsgBox(0, '$ok3', $ok3) Global $nbclass = Number(GUICtrlRead($ClassNumber)) While $ok2 While $ok3 If $nbclass Then MsgBox(0, '', 'class ok') $ok2 = False Else MsgBox(0, 'ERROR', "Class number must be one number.") $ok2 = False ;ExitLoop EndIf WEnd WEnd This way you can see that the code really doesn't make any sense having these 2 While-Wend loops, of which one depends on $ok3, which will never change in your code. Also the ok2 will never change as you aren't updating $nbclass inside the While-Wend loops.
-
This can't be code that runs. Post some example code that works and demonstrates your problem.
-
Funny, so you register and post this feeling have about AutoIt in an 4 years old thread. AutoIt3 uses mostly the standard windows calls, so how would exactly would this be an AutoIt3 issue? No blocking should be done internally and you as script developer need to handle any timing or race conditions yourself. Just my 2 cents.
-
KaFu reacted to a post in a topic: How do I submit a bug report?
-
@sydbarrett74 Do you realise your first post is a reply to a 16 years old thread? please try not to resurrect such old threads in the future. 🙂
-
KaFu reacted to a post in a topic: BETA: SciTE v5x & lua Dynamic_include and "Smart" AutoComplete for Vars/UDFs/Abbrevs
-
KaFu reacted to a post in a topic: BETA: SciTE v5x & lua Dynamic_include and "Smart" AutoComplete for Vars/UDFs/Abbrevs
-
There is indeed still an issue when using spaces for tabs when the setting usetabs=1 and tcb=0. The options tcb=-1 & tcb=1 are working fine. Need to think about this a bit, as it is getting pretty complex with trying to leave the existing indentation of a line in a commentblock , but still indenting the whole block between multilevel #cs-#ce.
-
Great, so what exactly is the thing you couldn't get done or have issues with?