Leaderboard
Popular Content
Showing content with the highest reputation on 10/13/2021 in all areas
-
(Poll) What features do you wish you had in AutoIt?
TheDcoder and one other reacted to JockoDundee for a topic
2 points -
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
-
There is one particular place where every human being would hate to live in a paperless society .2 points
-
Uploaded a new version of the SciTE4AutoIt3.exe v21.316.1639.1
seadoggie01 and one other reacted to Jos for a topic
please try current Beta version of Autoit3Wrapper.au3 to see if that fixes it for you2 points -
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
-
parse out ticket number
Skysnake and one other reacted to seadoggie01 for a topic
Use RegEx and forget it, or spend an hour learning Jason JSON parsing? RegEx wins everytime!2 points -
parse out ticket number
seadoggie01 and one other reacted to JockoDundee for a topic
What and give up the chance for some tasty RegEx?2 points -
I'm also trying to cultivate a staple diet ... which helps with what Musashi just suggested.1 point
-
(Poll) What features do you wish you had in AutoIt?
TheDcoder reacted to seadoggie01 for a topic
As in, you're bald and like paper? I don't think I understand this1 point -
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
-
Uploaded a new version of the SciTE4AutoIt3.exe v21.316.1639.1
seadoggie01 reacted to Jos for a topic
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 -
_SingleScript() Assure that only one script with the same name is running
seadoggie01 reacted to Exit for a topic
_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.au31 point -
1 point
-
(Poll) What features do you wish you had in AutoIt?
seadoggie01 reacted to TheDcoder for a topic
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 ECI1 point -
(Poll) What features do you wish you had in AutoIt?
TheDcoder reacted to seadoggie01 for a topic
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 -
Excel Date Format
SkysLastChance reacted to seadoggie01 for a topic
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 -
Uploaded a new version of the SciTE4AutoIt3.exe v21.316.1639.1
seadoggie01 reacted to SzymonN for a topic
1 point -
Excel Date Format
SkysLastChance reacted to Subz for a topic
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 -
It crossed my mind for a fleeting moment...1 point
-
FileOpen documentation $FO_BINARY
seadoggie01 reacted to mLipok for a topic
Do you want my head to explode?1 point -
AutoIt v3.3.15.4 Beta
seadoggie01 reacted to Melba23 for a topic
Hi, A word to the wise - enough talk of decompilers. M231 point -
1 point
-
Progress Bar
Leendert-Jan reacted to weaponx for a topic
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