-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
@UltraTM This should print 4 digit random numbers as long as you hold the middle mouse button! #include <misc.au3> While 1 If _IsPressed(04) Then ;04 is Middle Click While _IsPressed(04) ;04 is Middle Click ConsoleWrite(Random(1000, 9999, 1) & @CRLF) WEnd EndIf Sleep(10) WEnd
-
Hello! I have thought of this idea just now . I would like to propose an idea today! Its about caching the length of $aArrays or $mMaps! Since repeated use of UBound has its overhead, I would like to propose a method which cache's the length or size of List datatypes (That is what I classify Maps and Arrays under). Here is how it would work: Upon the first measurement of a List type variable, UBound will store the length of the variable along side its pointer in the cache (pointer for future referencing) UBound will check if the pointer already has a cache value associated with it, if yes, it Return the that value instead of recounting. ReDim will update the cache if it exists when resizing an Array. This step might be a little hard for maps, AutoIt would have to update the value of Maps everytime and element is added or removed using MapRemove. To prevent caching of Local variables after the scope has been destroyed, the cached value associated with the pointer will also be destroyed. I might be a fool to think that its not implemented yet... but if has not, I have proposed it just now . Thanks for reading, what do you think of my proposal?
-
@UltraTM has saved me from some thinking
-
I think you mean Old Master @Jos! ??? aut.... wht?
-
Are they're any major features to be added?
TheDcoder replied to Biatu's topic in AutoIt Technical Discussion
Same here . -
Directory Enquiries Challenge
TheDcoder replied to czardas's topic in AutoIt General Help and Support
Wow, this is going to be a hard task for people with Obsessive compulsive disorder, OCD people like to do it perfectly and neatly . -
Are they're any major features to be added?
TheDcoder replied to Biatu's topic in AutoIt Technical Discussion
, No, AutoIt is far from being a JIT Compiler... or even a compiler, AutoIt is just an interpreter. P.S AutoIt wiki has a page on its history too: https://www.autoitscript.com/wiki/History -
Are they're any major features to be added?
TheDcoder replied to Biatu's topic in AutoIt Technical Discussion
The new "Map" datatype is currently in beta. -
, I am not sure now, I thought that it would be safe as the page was vodafone's...
-
Vodaphone is a telecom company, I don't what its trying say but I am sure that you are not being attacked, it might be something wrong on vodafone's servers. Just contact their support team and they will sort it out for you .
-
I believe that Firefox uses Chrome's link database too, so Firefox would also give a big fat warning!
-
Yes, we can create a topic in the AutoIt Technical Forum to discuss major things . I cannot contribute to the code because I already have too much to work on .
- 82 replies
-
- autobuilder
- guibuilder
-
(and 3 more)
Tagged with:
-
My pleasure @kcvinu , I can even help with setting up a IRC channel for you guys if you want .
- 82 replies
-
- autobuilder
- guibuilder
-
(and 3 more)
Tagged with:
-
@kcvinu & @DFerrato If you both want to collaborate, you can use IRC as a good solution , You both can create a separate chat room for collaboration . Feel free to ask me if you are having any problems regarding IRC, TD.
- 82 replies
-
- autobuilder
- guibuilder
-
(and 3 more)
Tagged with:
-
Ooohhhh , I will be following the changes on GitHub .
-
He reported me? ... First, sorry if I have said anything wrong @JiBe , it is not my intention to hurt anyone! (The same is mentioned in my signature) I would welcome any counter-argument , but please do it here, not in the report box! .
-
No, this UDF launches the same executable multiple times to emulate multi-threading, As AutoIt is not able to use Multiple Cores, this UDF does not use them too! Huh? , Where did the UDF use Adlib functions?
-
Something similar to this?
-
I believe that this is easier: RunWait(@ComSpec & " /c " & 'c:\bfretail\mysql\bin\mysql.exe -u"root" -p"*******" -h"localhost" -e"select count(*) from betaling where bl_datum >=' & (@YEAR - 1) & '-01-01'';" -Dbnfdta > C:\Temp\betaalregels.txt', "", @SW_HIDE)
-
-
Auto It with opens office spreadsheets
TheDcoder replied to Jyotiranjandas's topic in AutoIt General Help and Support
The default library only supports Microsoft Excel because it interacts with the Excel object interface provided by Microsoft. -
ISN is Open Source .
- 82 replies
-
- autobuilder
- guibuilder
-
(and 3 more)
Tagged with:
-
Extended Message Box - New Version: 16 Feb 24
TheDcoder replied to Melba23's topic in AutoIt Example Scripts
Ohhhh.. Nice! A coincidence.