Jump to content

TheDcoder

Active Members
  • Posts

    7,103
  • Joined

  • Days Won

    88

Everything posted by TheDcoder

  1. Looking forward to the next stable release
  2. Feature Request: Refresh option in Context Menu (Right-Click Menu) in Project Tree
  3. @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
  4. @gil900 Who knows? ¯\_(ツ)_/¯, They might even remove it... or change the syntax.
  5. I can use a custom On Exit function... Also, you can't quit in my program while it is minimized ... Sometimes the GUI isn't even created! The only regular MVP is @TheSaint, But @water comes and goes (though, he does not prefer to use CB!)
  6. 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)
  7. Yeah, my project is a big mess Isn't that everyone does (from a long time) to exit from the GUI? P.S We can talk about this in the Chatbox if you want to...
  8. @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
  9. @gil900 Nope, only beta versions
  10. @guinness :faceplam: I forgot to change $bCaseSense... Added to ToDo list, Sorry!
  11. How??? I tried in my original code... the code I provided only serves as an example
  12. 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
  13. Uploaded all previous versions + v0.3 , Here is the change log: Enjoy! TD
  14. 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
  15. Oh , Thanks! This script conforms it : #include <MsgBoxConstants.au3> Local $mMap[] $mMap[1] = "Element with 1 as the key" MsgBox($MB_OK, "Test", $mMap[1.5]) ; Because Int(1.5) = 1 TD P.S It would be nice if it was true...
  16. 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
  17. Except @TheSaint
  18. @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
  19. Google hates XP
  20. @akashgupta Do you realize that this thread 6 years old? Please start a new thread, you will get much more replies.
  21. Why no zip them all up? I can't download a magnitude of zip files
  22. Why no zip them all up? I can't download a magnitude of zip files
×
×
  • Create New...