Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 08/22/2015 in all areas

  1. 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
  2. I have plenty of example scripts I have posted that have hundreds of views and no replies. You will not find cheerleaders here, only questions and critique; and that's on the offhand that what you are doing is both what somebody needs to do, and how they want to do it. Given the small fraction of users that frequent the forum, and the small fraction of them that actively post, and the small fraction of them that give two fx about your subject matter, consider any replies anomalous. I find value in the effort of returning half of what i have taken, not in the result.
    1 point
  3. argumentum, You need to look for the edit by adding the _GUIListViewEx_EditOnClick function in the idle loop: While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit EndSwitch _GUIListViewEx_EditOnClick() WEndM23
    1 point
    Awesome Book! Worth reading if you have 0 experience in programming! Keep up the good work jfish!
    1 point
  4. here is another way without using regex...you decide which is better for you $Handle = FileOpen("user.txt",0) $Read = FileRead($Handle) $Counter = 0 $Sum = 0 $Exit = True $Readline = "" while $Exit $Counter += 1 $ReadLine = FileReadLine("user.txt",$Counter) if @error <> 0 Then $Exit = False EndIf $Sum += $ReadLine WEnd MsgBox("","",$Sum)
    1 point
  5. it is not the best way but should work. #include <Array.au3> Local $sData=fileread("user.txt") $sData=StringMid($sData,1,StringInStr($sData,"Input")) ;just for avoid last number (0) no needed if is 0 Local $aData=StringRegExp($sData,"[-+]?[0-9]*\.?[0-9]+",3) ;~ _ArrayDisplay($aData) array result of numbers Local $sResult="" For $i= 0 to UBound($aData)-1 $sResult&= (($i <> 0) ? "+" : "") & $aData[$i] Next MsgBox(0,"",$sResult & " = " & Execute($sResult))Saludos
    1 point
  6. for every os and software ever, since ever. 1) fire up a fresh image in a sandbox 2) let it sit for a day 3) go block every ip that the machine talked to on the host firewall and your network firewall Sure they are a bag of dicks for not providing a handy mechanism to disable it, but so are adobe/oracle/cisco/google/mozilla/yourmother We run them all through quarantine.
    1 point
  7. Andreik

    WinExists

    WinExists("[TITLE:1.mp3; CLASS:MediaPlayerClassicW;]")
    1 point
  8. Well, i work on different projects but currently working on a theoretical algorithm for data compression. I know Autoit is not suitable for this kind of projects but I have my reasons. First, im an expert at finding out of the box solutions to specific problems such as Data compression and protection yet, new to programming and not efficient at all and Autoit is the easiest most flexible language ive encountered yet. Also this is still in theory and the theories fails on a daily basis so Im brute forcing the solution by generating about 4-5 new theories per week so I need Autoit’s ease and flexibility to match the speed of theory creation. The Current theory is the most promising thus far and have big chance of working out and If the theory works then I would have the patience and motive to move on to another language. (Giving credit to Autoit ofcourse) Second How could i resist such an awesome community?!
    1 point
  9. Start on top with the main post and references. Then understand each example as it grows in difficulty. Depending on your knowledge i assume no need to read all 22 pages. But if you are a starter it coukd be you have to read more on google microsoft iuiautomation.
    1 point
  10. Thanks BinaryBrother, I've tried switching via all the windows methods (that I'm aware of), as well as WMI using Manadar's code above. I can't imagine there'd be any difference in the actual intel driver of the same version between different manufacturers, but thanks for the offer. I've given up looking into this, as it's probably going to sort itself out soon enough so it's not worth me putting time into when I don't really use my laptop late at night at the moment. Last thoughts are interesting. It's too much of a coincidence that it stopped working exactly after the win10 upgrade for me to think it's a hardware issue, but it's not impossible. I'll see what happens in my bios screens too. Not something I've ever tried before.
    1 point
×
×
  • Create New...