Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/13/2021 in all areas

  1. Oops, have you forgotten about TheDcoder and co? Or were you heading in a nosy direction instead ... tissue everyone? And you can't have a proper BBQ without paper towels.
    2 points
  2. There is one particular place where every human being would hate to live in a paperless society .
    2 points
  3. please try current Beta version of Autoit3Wrapper.au3 to see if that fixes it for you
    2 points
  4. It's not meant to be understood, just appreciated. But in case you were wondering .... yes I would find more use for a stapler, than a comb ... even in this so-called paperless society ... my ass. P.S. I also need some bloody way to attach the paper pirate hat to my head.
    2 points
  5. Use RegEx and forget it, or spend an hour learning Jason JSON parsing? RegEx wins everytime!
    2 points
  6. What and give up the chance for some tasty RegEx?
    2 points
  7. I'm also trying to cultivate a staple diet ... which helps with what Musashi just suggested.
    1 point
  8. As in, you're bald and like paper? I don't think I understand this
    1 point
  9. ECI is gonna be a real Swiss Army Knife ... just you wait and see. I've put in a request for a Stapler, as I don't need the Comb.
    1 point
  10. Sorry ...but you were right and I was wrong and updated my initial reply already... it is autoit3wrapper.au3 that generates this message.
    1 point
  11. _SingleScript UDF Close all executing scripts with the same name and continue. or Wait for completion of predecessor scripts with the same name. or Exit if other scripts with the same name are executing. or Test, if other scripts with the same name are executing. See UDF header for details and examples. _SingleScript.au3
    1 point
  12. Do you think any one will guess which link you mean ❓ Please use this feature:
    1 point
  13. Don't think so, probably no one bothered to implement it due to low demand. This is one of the features that will be included in ECI
    1 point
  14. Getting back to the original question... in line complete array declaration... like this: Local $aArray[5] ... $aArray = [1, 2, 3, 4, 5] This gets annoying quickly with large arrays. It's so easy to explain, but likely isn't there for a good reason.
    1 point
  15. I highly suggest avoiding .Select and .Selection in VBA/COM whenever possible for performance, maintainability, and more. You can write it like this instead: #include <Excel.au3> Local $oExcel = _Excel_Open() Local $oWorkbook = _Excel_BookOpen($oExcel, @ScriptDir & "\excel example.csv") Local $oRange = $oWorkbook.ActiveSheet.Columns("A:A") $oRange.Replace("AM", " AM") $oRange.Replace("PM", " PM") $oRange.NumberFormat = "m/d/yyyy"
    1 point
  16. Hi I found an error that freezes the system completely (Windows 11 only,) After typing the name of the macro and selecting it with the mouse from the drop-down menu, the system crashes and reboots.
    1 point
  17. Subz

    Excel Date Format

    You could just replace "AM" with " AM" as well as the PM and then format, example: #include <Excel.au3> Local $oExcel = _Excel_Open() Local $oWorkbook = _Excel_BookOpen($oExcel, @ScriptDir & "\excel example.csv") $oWorkbook.ActiveSheet.Columns("A:A").Select $oExcel.Selection.Replace("AM", " AM") $oExcel.Selection.Replace("PM", " PM") $oExcel.Selection.NumberFormat = "m/d/yyyy"
    1 point
  18. Danp2

    parse out ticket number

    It crossed my mind for a fleeting moment...
    1 point
  19. Do you want my head to explode?
    1 point
  20. Hi, A word to the wise - enough talk of decompilers. M23
    1 point
  21. Yes, please make it so. wot
    1 point
  22. weaponx

    Progress Bar

    To test I first opened Control Panel > Power Options > Power Meter #Include <SendMessage.au3> #include <ProgressConstants.au3> $handle = ControlGetHandle ("Power Options Properties", "", "[CLASS:msctls_progress32; INSTANCE:1]") ConsoleWrite("Progress bar handle: " & $handle & @CRLF) $msg = _SendMessage($handle,$PBM_GETPOS,0,0) ConsoleWrite("Position: " & $msg & "%" & @CRLF)
    1 point
×
×
  • Create New...