Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/29/2017 in all areas

  1. FileSetAttrib ? Start script, make read only, exit process set to normal? Or have I misunderstood? Edit: Sorry, I see you don't want them to open it either... Depends how important it is, you could hide it, or make it system I suppose...
    1 point
  2. JLogan3o13

    Gui Designer Like KODA

    As this is not primarily a python forum, my guess is you're going to get a lot faster answer through a simple google search: https://www.google.com/search?q=gui+designer+for+python&rlz=1C1GGRV_enUS752US752&oq=GUI+designer+for+&aqs=chrome.0.0j69i57j0l4.3063j0j8&sourceid=chrome&ie=UTF-8 Which would lead you to Python's own Wiki: https://wiki.python.org/moin/GuiProgramming
    1 point
  3. #include <Array.au3> $sText = '{"us":473,"global":367},"rating":false}}])' $a = StringRegExp($sText, ":(\d+)", 3) _ArrayDisplay($a)
    1 point
  4. "us":(\d+).*"global":(\d+) https://regex101.com/r/l4icdQ/2
    1 point
  5. sree161

    Help needed in For loop

    Thanks fr ur help....i have solved this issue
    1 point
  6. Try this Local $FileRead = FileRead($fileToRead) & @crlf $strFileRead=stringregexpreplace($FileRead,"(.*?)(\r\n)(.*?)(\r\n)","$3,") Regex parts are between braces () It splits every 2 lines in 4 parts and only copies the 3rd with a comma appended excel close you should use https://www.autoitscript.com/autoit3/docs/libfunctions/_Excel_Close.htm Procesclose is not a good solution Try https://www.autoitscript.com/autoit3/docs/libfunctions/_Excel_Open.htm
    1 point
  7. send($Pasword,$SEND_RAW) Check the help file for send options
    1 point
  8. czardas

    Help needed in For loop

    It does stop when it reaches the array element/item count at $Sp[0] : which is 4 in your example. You can reverse the order by starting at the end instead - negative step value. So you can loop whichever direction you want. For $l = $Sp[0] To 1 Step -1 $Out = "$Sp[" & $l & "]:" & $Sp[$l] MsgBox($MB_SYSTEMMODAL , "Split", $Out ) Next In fact 'Step 1' is never needed and can be removed from the first example. Also you could split the string differently to produce more array elements (using a different delimiter). Try it! $Sp = StringSplit ($Input, @CRLF, $STR_ENTIRESPLIT) I recommend you look at _ArrayDisplay(). It will help you to understand how arrays work.
    1 point
  9. Neutro

    _RunDOS help

    Why do you need _RunDos while Run & SW_HIDE does the same thing?
    1 point
×
×
  • Create New...