Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 04/05/2016 in all areas

  1. You could have tested that quite easily by now Jos
    2 points
  2. water

    AD - Active Directory UDF

    Version 1.6.3.0

    17,288 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
  3. https://www.autoitscript.com/forum/topic/178680-customowner-drawn-multi-line-header-in-listview/ Saludos
    1 point
  4. $x = _Base64_Encode("jilles" & chr(0) & "jilles" & Chr(0) & "sesame") $x = StringReplace($x,@crlf,"") ConsoleWrite($x & ":" & stringLen($x) & @CRLF) ; It should be "amlsbGVzAGppbGxlcwBzZXNhbWU=" if $x == 'amlsbGVzAGppbGxlcwBzZXNhbWU=' then ConsoleWrite("Yes!!!!" & @CRLF) Else ConsoleWrite("No!!!!" & @CRLF) EndIf
    1 point
  5. NULL in AutoIt like a null ptr not null character. YOu should do this _Base64_Encode("jilles" & chr(0) & "jilles" & chr(0) & "sesame") Saludos
    1 point
  6. jchd

    SQL Query Help

    As Bowmore showed this can be achieved thru a simple join, yet I'd recommend you normalize your schema by using foreign keys. The query would be essentially the same but linking fields would now be made by row IDs, almost always 64-bit integers.
    1 point
  7. Actually, every variable that functions use as parameter should be passed as argument, no matter if it's global or not. Only global constants are free of that.
    1 point
  8. Bowmore

    SQL Query Help

    You did not mention which database you are using, but the following should give you the required result on most databases that follow the latest ANSI SQL standard. SELECT a.field1, c.field3 FROM a JOIN x ON (a.field1 = x.afield1) JOIN b ON (x.bfield1 = b.field1) JOIN y ON (b.field1 = y.bfield1) JOIN c ON (y.cfield1 = c.field1) WHERE c.field3 = 'stringvalue'
    1 point
  9. According to the help file keyword Null always evaluates to Null or an empty string: "Null evaluates only to Null, still in mathematical operations this keyword has value of 0, and as string it has no value (empty string)." So - as always - the help file is your friend
    1 point
  10. ... multiplied by 10^301 but don't expect unit granularity over the whole range!
    1 point
  11. Believe the TimerDiff() returns a double type so 1.79769e+308 give or take a few. Jos
    1 point
  12. TheSaint

    How computers work

    My understanding is that it is to do with pipes, bottlenecks and timing, Which to me, means you can have simultaneous processes occurring (cores), but then they share output and input pathways, and that is where timing comes into it. First come first served is where I imagine the racing occurs. I am however far from being an expert, and so could be completely wrong in what my mind has pieced together, from things I have read and what seems logical. It has also been some time between readings ... usually only when considering my next PC. I have forgotten for instance, where the Southbridge fits into all that ... just remember it improves things in that regard ... alternate pathways or something. My advice, is don't get old ... you forget or misremember things ..... oops too late.
    1 point
  13. Hi Water, Just wanted to give LONG overdue kudos and thanks for your AD UDF. This is one of my three top used UDFs at the office, and has GREATLY simplified data gathering for some very complex reports, as well as automating several tasks. I have even been able to free up one admin completely from our annual security audit process (for which he is also very grateful) thanks to the use of your UDF. Thank you.
    1 point
×
×
  • Create New...