Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/29/2020 in all areas

  1. abberration

    Software Installer

    Software Installer Version: 2.0 It's been been a long year, but I finally got some time to rework this project. I re-wrote everything from scratch because the old version was getting too complicated with so many options and sub-menus. This new version is much easier to use and I have been testing for a few days and it seems very stable. For those who are new to this software, it helps you install software silently/unattended. This new version tries to determine the silent switch automatically. You can also re-organize the order in which the software installs by dragging & dropping them in the listview. It now supports creating profiles and checks for missing software (and automatically unchecks them, so it does not attempt to install non-existent software). One feature I included was because I have seen several people on Youtube talk about disliking bright screens at night. So, now you can choose from a few color theme (half of them are dark). I dabbled a bit more into GDI+ to draw a few things and show my logo with a transparent background (hint: I'm not good at GDI+). Under the Help menu, you will find a User Guide, which goes through most of it's features. I included a new icon if you want to use when you compile the script (in the Assets > Misc folder). If you have questions, comments or suggestions, all are welcome. Hope you enjoy! Here it is in action: Software_Installer_2.0.zip
    1 point
  2. Subz

    Detect Input Box changes

    @edumanilha Just use _GuiCtrlIPAddress_... functions example: #include <GUIConstantsEx.au3> #include <GuiIPAddress.au3> Example() Func Example() Local $sIPAddress = "192.168.6.10" Local $hGui = GUICreate("IP Address Control", 260, 30) Local $hIPAddress = _GUICtrlIpAddress_Create($hGui, 5, 5, 125, 20) Local $idIPAddress = GUICtrlCreateButton("IP Address", 130, 4, 125, 22) GUISetState(@SW_SHOW) _GUICtrlIpAddress_Set($hIPAddress, $sIPAddress) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $idIPAddress MsgBox(4096, "IP Address", "IP Address = " & _GUICtrlIpAddress_Get($hIPAddress)) EndSwitch WEnd EndFunc
    1 point
  3. Did you actually test? Because it works fine for me. #include <IE.au3> ShellExecute("Chrome.exe", "192.168.1.1") _IECreate("192.168.1.1")
    1 point
  4. @Melba23 Once again you have solved a problem for me! I am writing a new program to automate some repetitive tasks and wanted to have dropdowns in a listview. It took me a couple hours of reading posts and your documentation, but I finally got it. Wow, I am always amazed at your work. Thank you for working so hard on this forum. 🍸
    1 point
  5. acidman

    Autoit Future

    I might not be as informed with programming languages like c, c++, java, visual c# and so forth. I am one of the unlucky folks that does not have access to some bursary or rich parents that would pay for a course in some programming language that would give me extensive knowledge about programming in general. I had to teach my self on how to program/code in a language I knew nothing of at the time.Sure I might feel as if I know a lot of Autoit but I realize more every day that I dont really know that much, I was pressurized when I started to learn autoit to develop a full-blown application. Becuase at the time it was my only method of making a survival becuase I was unemployed at the time. I like autoit, someone once said autoit has as much limits as you want to limit the language to - and I know now that is true, I think Valik made that statement. I like autoit just the way it is and I will most likely never switch to some Other language. But do note I have started learning some intense language like c++ and it has indeed taught me a lot. I know now there is not limit in autoit, it is very strong and can be compared to something like visual c#, Sure the language is still growing but I know for a fact there are a lot of gifted people that is challanging tasks like BUILDING games and many other tasks. 'Autoit I think you are the best thing that has happened to me' I love you!!! And i DO appreciate the fact that there is so much support on this forum...
    1 point
×
×
  • Create New...