Jump to content

Jos

Developers
  • Posts

    34,726
  • 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,555 profile views

Jos's Achievements

  1. Just THINK and RTFM in an effort to understand your own code. comeback when you have some progress to show for.
  2. No shit, Yuchan is back.... This isn't going to end well.
  3. 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.
  4. This can't be code that runs. Post some example code that works and demonstrates your problem.
  5. 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.
  6. @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. 🙂
  7. I had to make a minor change to the sourcecode and recompiled & uploaded it with the same versionnumber. The funny thing is that this one doesn't give an error when downloading from the Beta directory.
  8. Not much I can do about that... I have no Development Certificate that I can sign the programs with, and they are way too expensive.
  9. Just uploaded an updated Tidy version with some new logic that now hopefully can handle all scenarios of using Tabs&Spaces as Indentation within CommentBlocks. Please give that a try and let me know if that works.
  10. 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.
  11. Great, so what exactly is the thing you couldn't get done or have issues with?
  12. Just uploaded an updated Tidy Beta that should fix this bug. Please try and see if that sorts it for you.
  13. There should be no difference as the external script gets combined with the master at compilation time ending up as the same script as your first one. So there must be another difference somewhere.
×
×
  • Create New...