Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/12/2012 in all areas

  1. This UDF allows to create pseudo TreeViewTab control (tabs as TreeView). Useful for Settings dialog. Notes: Example: Download: TreeViewTab_1.2.zip TreeViewTab_1.1.zip Changelog:
    2 points
  2. Hi! Today I want to show you my current AutoIt project: The ISN AutoIt Studio. 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, trophies and a lot more features!! Here are some screenshots: Here 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 ->Dynamic Script ->detailed overview of the project (total working hours, total size...) And 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: http://autoit.de/index.php?page=Thread&threadID=29742&pageNo=1 For more information visit my Homepage: https://www.isnetwork.at So….have fun with ISN AutoIt Studio! PS: Sorry for my bad English! ^^
    1 point
  3. HotKeySet("{F2}", "MSG") HotKeySet("{F3}", "xt") Global $chk Func _DoStuff($lab, $val) If $chk = 0 Then Return (-1) MsgBox(0, $lab, $val) If $chk = 0 Then Return (-1) EndFunc ;==>_DoStuff Func MSG() $chk = 1 While 1 If _DoStuff("TEST", "1") = -1 Then ExitLoop If _DoStuff("TEST", "2") = -1 Then ExitLoop If _DoStuff("TEST", "3") = -1 Then ExitLoop If _DoStuff("TEST", "4") = -1 Then ExitLoop If _DoStuff("TEST", "5") = -1 Then ExitLoop $chk = 0 WEnd EndFunc ;==>MSG Func xt() $chk = 0 EndFunc ;==>xt While 1 Sleep(200) WEnd HotKeySet("{F2}", "MSG") HotKeySet("{F3}", "xt") Func MSG() $chk = 1 while 1 MsgBox(0, "TEST", "1") MsgBox(0, "TEST", "2") MsgBox(0, "TEST", "3") MsgBox(0, "TEST", "4") MsgBox(0, "TEST", "5") $chk = 0 wend EndFunc ;==>MSG Func xt() _main() EndFunc ;==>xt _main() Func _main() While 1 Sleep(200) WEnd EndFunc
    1 point
  4. trancexx

    Data type in structure

    If you really want to return pointer to allocated memory then you would use neither new or malloc. When that is the case you have to be precise what method should be used to free memory, i.e. you have to be precise about how that memory is allocated. Operator new does not dictate the way memory is allocated. That is implementation detail for/of specific compiler. There are better ways of doing all this, for example asking for pointer to allocated memory by the caller.
    1 point
×
×
  • Create New...