-
Posts
7,103 -
Joined
-
Days Won
88
Content Type
Forums
Downloads
Forum Articles
Events
Everything posted by TheDcoder
-
Looking forward to the next stable release
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
Feature Request: Refresh option in Context Menu (Right-Click Menu) in Project Tree
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
@GZM You can follow Best Coding Practices to start with... Use #Regions to fold code... Avoid using Magic Numbers etc etc... I also made a UDF called "Process UDF" (Link in my signature) which contains functions to get the command line output from a program (Though, its a bit outdated ) Good luck
-
Thanks! 👍
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
@gil900 Who knows? ¯\_(ツ)_/¯, They might even remove it... or change the syntax.
-
I have this problem for a very lonnng time! Almost since I started using ISN AutoIt Studio: I get a unusual blank item in Recently opened items... Where can I find the recently opened items's data? (To manually fix the blank item)
- 995 replies
-
- isn autoit studio
- isn
-
(and 3 more)
Tagged with:
-
@guinness Wow! That is a lot of work! ... But over kill for my solution , I found a easier (clean too!) solution: ; A cleaned example taken from the crappy code in the question :P #Region Includes #include <ColorConstants.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #EndRegion #Region GUI Global $g_hGUI = GUICreate("How to disable a Edit control without graying it out", 290, 139, 192, 124) Global $g_idEditControl = GUICtrlCreateEdit("Its magic! :D", 8, 8, 273, 121, $ES_READONLY) GUICtrlSetBkColor($g_idEditControl, $COLOR_WHITE) ; $COLOR_WHITE = 0xFFFFFF GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE GUIDelete($g_hGUI) Exit EndSwitch WEnd #EndRegion Thanks again! TD
-
@gil900 Nope, only beta versions
-
@guinness :faceplam: I forgot to change $bCaseSense... Added to ToDo list, Sorry!
- 22 replies
-
- maps
- new datatype
-
(and 2 more)
Tagged with:
-
Hello! I think the thread title is obvious enough , Here is my code: #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> #Region ### START Koda GUI section ### Form= $Form1 = GUICreate("Form1", 290, 139, 192, 124) $Edit1 = GUICtrlCreateEdit("Test", 8, 8, 273, 121, $ES_READONLY) GUISetState(@SW_SHOW) #EndRegion ### END Koda GUI section ### While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Thanks in advance, TD
-
Uploaded all previous versions + v0.3 , Here is the change log: Enjoy! TD
- 22 replies
-
- maps
- new datatype
-
(and 2 more)
Tagged with:
-
Wow, Nice demonstration of using Maps ... Although, I don't understand OOP P.S I also made a Experimental Maps UDF which contains a function similar to _ArrayToMaps
-
Hello! I was wonder if it OK for me to use datatypes other than strings & integers... I tested it and it works! But the help file states: (Beta Helpfile -> AutoIt -> Language Reference -> Variables) So yeah, will I able to continue using other datatypes normally even in the future releases of AutoIt? Thanks in Advance! TD
-
Except @TheSaint
-
Set a reaction if Firefox crashes - FF.au3
TheDcoder replied to skyhigh's topic in AutoIt General Help and Support
My pleasure -
Set a reaction if Firefox crashes - FF.au3
TheDcoder replied to skyhigh's topic in AutoIt General Help and Support
@skyhigh There is no need to lock it unnecessarily, Just post a message & stop bothering about this thread Edit: Or you can edit your first post to change the title of this thread -
Google hates XP
-
@akashgupta Do you realize that this thread 6 years old? Please start a new thread, you will get much more replies.
-
- 3 comments
-
- gdi+
- useless scripts
-
(and 3 more)
Tagged with:
-
- 3 comments
-
- gdi+
- useless scripts
-
(and 3 more)
Tagged with:
-
Testing if variable is empty changed?!
TheDcoder replied to AIstarter's topic in AutoIt General Help and Support
My pleasure!