Jump to content

Jos

Developers
  • Posts

    34,987
  • Joined

  • Days Won

    351

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

27,323 profile views

Jos's Achievements

  1. Excuse me when you find my previous reply offensive, which isn't intended, but since AI the RTFM has been buried somewhere deep! 😉 anyway, F5/help would have told you that. 🙂
  2. It really helps when you also try to understand code before running it. 😉 The @error test is all about "as long as there is a valid RUN() session" keep this loop running.
  3. That is what your script tells it to do, to repeat the same thing over and over again and also add CRLF when nothing is received. Try: #include <AutoItConstants.au3> $sCMD = @ComSpec & " /c DIR" Local $tline = "" Local $foo = Run($sCMD , "C:\", @SW_SHOW, BitOR($STDERR_CHILD, $STDOUT_CHILD)) While Not @error $cline = StdoutRead($foo) if $cline <> "" Then $tline &= $cline ConsoleWrite($cline) EndIf WEnd ConsoleWrite("Final STDOUT read:" & $tline & @CRLF) ConsoleWrite("Stderr Read:" & StderrRead($foo) & @CRLF)
  4. isn't opening a folder the same as relaunching? I assume you what explorer to start without showing the window?
  5. Just my 2 cents: vsc doesn't have any dynamic autocomplete like i made in the latest version of the lua script, but it can add, as mentioned, the missing includes at the top by using the stuff that is buildin into autoit3wrapper for some years now. For me, on the odd occasion I do some au3 coding, the standard autocomplete in VS Code is in 90% of the cases good enough, and then I trigger the missing includes to get that part done.
  6. Works fine for me, so your case must be different. You are sure the code is exactly what you use to test with?
  7. Yes... No... Maybe.... When you want a serious answer you need to ask a much more detailed question as context is totally missing as to why they are separate programs.
  8. Thought it was in the "Language Reference - Directives" section... guess i was wrong, so that might be a good place to make a general comment about lines starting with # being ignored when containing an unknown directive.
  9. #region has no meaning for autoit3 and is totally ignore as anything not recognised starting with # is, which is mentioned in the helpfile. I added it as mod in the scite lexer and tidy for convineance, so no need to be more specific in the autoit3 helpfile.
  10. Doesn't the Help/About tell you its origin?
  11. Welcome to the AutoIt forum. Unfortunately, you appear to have missed the Forum rules on your way in. Please read them now – particularly the bit about staying within the EULA of programs - and then you will understand why you will get no help and this thread will now be locked. See you soon with a legitimate question, I hope. The Moderation team
  12. Are you running the latest Beta Installer (SciTE4AutoIt3_vsc.exe) and then updated that with all available LUA files in Beta? ...else these type of issues are expected.
×
×
  • Create New...