Jump to content

Leaderboard

Popular Content

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

  1. Version 1.2

    203 downloads

    This small, well-annotated example script solves sudoku puzzles with simple, powerful bitmask functions applied on a massive scale, demonstrating both common solving techniques and highly-optimised brute-force, using Eigen4AutoIt's (E4A) logical functions toolkit. No advanced maths is required, just basic logic.
    1 point
  2. @Letraindusoir You can include the following in the goog:ChromeOptions: "excludeSwitches": ["enable-automation"], "useAutomationExtension": false My current wording of $sDesiredCapabilities looks like this and it works for me. $sDesiredCapabilities = '{"capabilities": {"alwaysMatch": {"unhandledPromptBehavior": "ignore", ' & _ '"goog:chromeOptions": {"w3c": true, "excludeSwitches": ["enable-automation"], "useAutomationExtension": false, ' & _ '"prefs": {"credentials_enable_service": false}, "args": ["start-maximized"] }}}}'
    1 point
  3. anib

    Return IsoCode

    Hello everybody How do i use the class or objet (system.globalization.regioninfo) to return the values of "ISOCurrentSymbol / CurrentSymbol/ ect.." or "ISO Code 4217> EUR" return that all countries contain eur Is this possible? URI_MSDN : RegionInfo Or other solution for my first projet ? is possible to return all global const for in exe or dll ? Thanks a lot
    1 point
  4. E4A version 4.8 is released, dedicated to @argumentum for digging into the @scriptlinenumber macro. As a result, all user-exposed E4A functions now return the main script's line number when an E4A error is triggered, when running uncompiled scripts. Other features: matrix Reduction functions substantially expanded new functions for reversing the order of all rows or all cols (content inside each row/col remains untouched) sorting all rows or all cols based upon the content of a single col c.q. row Again, the focus has been on strengthening basic matrix management and specs retrieval, rather than fancy maths. An application example is forthcoming soon published in my BitmaskSudokuSolver thread (v1.1)
    1 point
  5. try this :- #include<AutoItConstants.au3> #include<MsgBoxConstants.au3> $process=Run("help dir","", @SW_MAXIMIZE,$STDOUT_CHILD) ProcessWaitClose($process) ;w8 the command to be executed $Result=StdoutRead($process) ;the command output will be stored on $Result variable MsgBox($MB_OK,"Command result",$Result) ;show the output on a msgbox FileWrite("helpdir.txt",$Result) ; save the output in txt file
    1 point
  6. After almost six years, celebrating one thousand downloads of E4A today!
    1 point
  7. 1 line Run("calc.exe")
    1 point
×
×
  • Create New...