Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/14/2018 in all areas

  1. water

    AD - Active Directory UDF

    Version 1.6.3.0

    17,293 downloads

    Extensive library to control and manipulate Microsoft Active Directory. Threads: Development - General Help & Support - Example Scripts - Wiki Previous downloads: 30467 Known Bugs: (last changed: 2020-10-05) None Things to come: (last changed: 2020-07-21) None BTW: If you like this UDF please click the "I like this" button. This tells me where to next put my development effort
    1 point
  2. ISI360

    ISN AutoIt Studio

    Note: This is the continuation thread from the original one of 2012. The old one growed over 50 pages...so to make the overview better i created a new main thread for the ISN AutoIt Studio. You can find the old original thread here. The ISN AutoIt Studio is a complete IDE made with AutoIt, for AutoIt! It includes a GUI designer, a code editor (with syntax highlighting, auto complete & intelisense), a file viewer, a backup system and a lot more features!! Here are some screenshots: Here are some higlights: Easy to create/manage/public your AutoIt projects! Integrated GUI-Editor (ISN Form Studio 2) Integrated file & projectmanager Auto backupfunction for your Projects Extendable with plugins! Available in several languages Trophies Syntax highlighting /Autocomplete / Intelisense Macros Changelog manager for your project Detailed overview of the project (total working hours, total size...) Am integrated To-Do List for your project Open Source (You can download the source code from my website) And much much more!!! -> -> Click here to download ISN AutoIt Studio <- <- Here is the link to the german autoit forum where I posted ISN AutoIt Studio the first time: Link For more information visit my Homepage: https://www.isnetwork.at So, have fun with the ISN AutoIt Studio! And feel free to post your feedback, bugreports or ideas for this project here in this thread!
    1 point
  3. Depends on your install methode. If you chose protable you simply can remove the whole ISN autoit studio folder and you are good. If you choose normal, you must remove the ISN Autoit Studio folder and your Data Directory. (You have choosen it in the first config) Default is My Documents\ISN Autoit Studio Warning: All you Projects will be in this folder too by default! And you can access to the formstudio if you create a new ,isf file in your project. (File -> New file -> isf) If you open the isf in the left project tree it should open it with the form studio. (see the testproject)
    1 point
  4. Findall with a true condition is slow. If you can make a condition which filters only controltypids of interest its much faster. And just using treewalkers can improve speed also a lot. See examples.zip
    1 point
  5. rcmaehl

    ControlGetText help

    Mitochondria is the powerhouse of the cell.... no wait that was middle school.
    1 point
  6. This if statement now works for me All working now! Many thanks!
    1 point
  7. Try this, see if you can spot the differences. #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 613, 430, 192, 132) $Button1 = GUICtrlCreateButton("Button1", 48, 48, 137, 57) $Button2 = GUICtrlCreateButton("Button2", 208, 48, 161, 57) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 MsgBox(0, "Hello", "Hello") Case $Button2 $Form2 = GUICreate("Form2", 613, 430, 292, 232) $Button3 = GUICtrlCreateButton("Button3", 48, 48, 137, 57) $Button4 = GUICtrlCreateButton("Button4", 208, 48, 161, 57) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg(1) If $nMsg[1] = $Form2 Then Switch $nMsg[0] Case $GUI_EVENT_CLOSE GUIDelete($Form2) ExitLoop Case $Button3 MsgBox(0, "Hello", "Hello") EndSwitch EndIf WEnd EndSwitch WEnd
    1 point
  8. lordsocke, The Managing Multiple GUIs tutorial in the Wiki would probably be of use. M23
    1 point
  9. JLogan3o13

    CMD to autoit

    Really? How odd...
    1 point
  10. Silly me forgot to use quotation marks Working now! Thanks
    1 point
  11. Zedna

    Function basics

    Something like this Test2Add_A_Matter('ABE111', 'ABE118-1274576') Func Test2Add_A_Matter($ClientNumber, $MatterNumber) ; your code ... EndFunc
    1 point
  12. 1 point
  13. fawder

    execute cmd commands

    got it to run. thanks a bunch all!! RunAsWait($sUserName, $sDomain, $sPassword, 0, @ComSpec & ' /k net stop "' & $sServiceName)
    1 point
  14. That is a nice little template It was apparently the user taietel https://www.autoitscript.com/forum/topic/146952-gui-design-concepts/
    1 point
  15. Jos

    AutoIt Check for Update error

    This has been reported and fix already.. check BugTracker (TRAC) for details. Jos
    1 point
  16. one of the users here posted this gem. It's a GUI Template. very, very nice. use it as a starting point, no koda or external tools needed GUITemplate.au3
    1 point
  17. Jon

    AutoIt v3.3.14.4 Released

    AutoIt v3.3.14.4 has been released. Thanks to everyone involved, both visible and behind the scenes. Download it here. Complete list of changes: History
    1 point
  18. 1 line Run("calc.exe")
    1 point
  19. When I use a GUICtrlCreateGraphic(), then all draw-commands from the MultiGraph-UDF (include _MG_Graph_initialisieren()) are moved to right, in dependencies of the starting coordinates from the GUICtrlCreateGraphic() before. Can anybody help me, why ? Why responds GDIPlus to the GUICtrlCreateGraphic() ? Here is a minimal example and the UDF: Multigraph_Err_Example.au3 MultiGraph.au3 You can see the difference, if you disable the lines 15-17 in my example. Then the help-grid is moved to original position ! Thanks for your help... Micha
    1 point
  20. Apparently it has to do with the relative draw-position from the GUICtrlCreateGraphic()-command for a following GUICtrlSetGraphic()-command. But why does it affect the GDIPlus draw commands ? What I've found is only the following workaround (create a dummy-control in line 14): #include <MultiGraph.au3> Opt("GUIOnEventMode", 1) Global $IDLed Global $hGUI $hGUI = GUICreate("Demo", 1250, 500) GUISetOnEvent($GUI_EVENT_CLOSE, "_Exit") $IDLed = GUICtrlCreateGraphic(520, 13 , 14, 14) GUICtrlSetGraphic($IDLed, $GUI_GR_COLOR, 0xFF0000, 0xFF0000) GUICtrlSetGraphic($IDLed, $GUI_GR_PIE, 7, 7, 7, 0, 360) ; create a dummy control to clear the relative position GUICtrlCreateGraphic(0, 0, 0, 0) GUISetState(@SW_SHOW) _MG_Graph_erstellen (1, $hGUI, 80, 160, 500, 280) _MG_Graph_initialisieren (1) While 1 Sleep(100) WEnd Func _Exit() Exit EndFunc
    1 point
  21. Einstein197

    CMD to autoit

    Search here nothing I search for I can find y this
    0 points
×
×
  • Create New...