Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/29/2018 in all areas

  1. water

    AD - Active Directory UDF

    Version 1.6.3.0

    17,293 downloads

    Extensive library to control and manipulate Microsoft Active Directory. Threads: Development - General Help & Support - Example Scripts - Wiki Previous downloads: 30467 Known Bugs: (last changed: 2020-10-05) None Things to come: (last changed: 2020-07-21) None BTW: If you like this UDF please click the "I like this" button. This tells me where to next put my development effort
    1 point
  2. To me that means only SELECTs, then no writes. Or am I missing something? I can't test anything right now, will do at some later time. BTW, it would be very helpful to include the json1 extension (there is a simple declarative to do so).
    1 point
  3. This should be included into KODA and any other skin generator. I personally would love to see this incorporated into KODA with the theme options. To be honest, I hate wasting time reinventing the wheel. I just want to get down to coding functions and leave the form building to KODA.
    1 point
  4. or set option at start of script.. Opt("SendCapslockMode", 0) ;1=store and restore, 0=don't then your send capslock on/off/toggle will work
    1 point
  5. Each item in the array is a variable for example: #include <array.au3> #include <file.au3> Global $2dArray _FileReadToArray(@ScriptDir & "" & "\Data.csv", $2dArray,$FRTA_NOCOUNT,"|") _ArrayDisplay($2dArray) For $i =1 To UBound($2dArray) -1 MsgBox(0, '', _ "Name = " & $2dArray[$i][0] & @CRLF & _ "Address = " & $2dArray[$i][1] & @CRLF & _ "Phone = " & $2dArray[$i][2] & _ "Manufacturer = " & $2dArray[$i][3] & @CRLF & _ "Model = " & $2dArray[$i][4] & @CRLF & _ "Serial = " & $2dArray[$i][5] & @CRLF & _ "Repair = " & $2dArray[$i][6]) Next
    1 point
  6. Hi, you can use it however you like in your project..You also don't need to set any link in your program.
    1 point
  7. Fixed in version 1.3.3.1 of the UDF I uploaded today
    1 point
  8. Draygoes

    Which control is this?

    Agreed with @jdelaney. That looks a lot like a listviw.
    1 point
  9. jdelaney

    Which control is this?

    a list view would be similar. Just use the spy tool.
    1 point
  10. padmanabangs, RegExes are too big a subject to cover in a forum thread - they are a whole new language to learn. In this case the pattern decodes as follows: (.+?) - Capture a group containing all characters (there may be none)... \s+ - until we reach one or more spaces (which we ignore)... (.+) - and then capture all the other characters until the end 3 - Return the captured groups as an array I hope that helps. I recommend this site to start learning about RegExes - good luck. M23
    1 point
  11. This is one way to do it. Certainly others will show you different ways to skin this cat. They all will do pretty much the same thing, just in different ways. It'll be up to you to decide which one fits with your whole script better. #include <String.au3> Local $file = FileOpen("AR123.html", 0), _ $data = FileRead($file), _ $found = _StringBetween($data, 'SR_NUMBER: ', '<br>') MsgBox(0, '', $found[0])
    1 point
  12. BPBNA

    Wait for file to exist

    Yeah I didn't really think that through I guess, but he can replace the Exitloop with whatever code he wanted to be there when it finds it. $begin = TimerInit() While TimerDiff($begin) < 300000 If FileExists("u:\jlc.ini") then ;insert code EndIf WEnd Edit: Forgot to close the code tag
    1 point
×
×
  • Create New...