Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 07/03/2017 in all areas

  1. ADMPV

    librhash

    https://sourceforge.net/projects/rhash/ librhash.dll - supports CRC32, MD4, MD5, SHA1, SHA256, SHA512, SHA3, Tiger, TTH, Torrent BTIH, AICH, ED2K, GOST R 34.11-94, RIPEMD-160, HAS-160, EDON-R 256/512, WHIRLPOOL and SNEFRU hash sums. faster than _Crypt_HashFile about 2 times librhash.au3, librhash.dll in archive Changelog: 2017-07-11 Added: rhash_timer_start, rhash_timer_stop Changed: DLL - rhash_run_benchmark_mod - passing file as HANDLE 2017-07-07 Changed: rhash_ex() Added: DLL - rhash_run_benchmark_mod 2017-07-04 Changed rhash_ex() librhash_134.zip
    1 point
  2. Popularity seems to me an odd criterion to determine a programming language's suitability for a particular job. The mainstream is the muddiest part of the river.
    1 point
  3. ADMPV

    libcpuid

    libcpuid provides CPU identification for the x86. It wraps the CPUID and RDTSC instructions in a portable manner and provides a lot of technical info about the processor, such as vendor, core codename, features/instruction sets, cache sizes, and more. libcpuid Web Site http://libcpuid.sourceforge.net/ libcpuid.au3 and libcpuid.dll in attached arhive libcpuid_030.zip
    1 point
  4. I have no idea about how to do it using AutoIt (without using any external tool). I found this article which refers to bridgeutil.exe . It seems this tool could help you to do what you want. @Jos : https://www.windowscentral.com/how-set-and-manage-network-bridge-connection-windows-10
    1 point
  5. Hey Welcome to the forum, I'm new here as well and it's only my 7th day playing around with AutoIT. I see this as practice run for me to sharpen my skill as I don't have that many projects to work on. Try this: #include <IE.au3> $url = "https://web.cyberpay.vn/#/login" $oIE = _IECreate($url) ;This opens up the page in IE _IELoadWait($url) ;Waits the page to load WinActivate($oIE) Send("{TAB}username{TAB}password{ENTER}") Since the object class for username and password are the same, and there are no name available, I can only use the most basic way to enter the info. <input type="text" placeholder="Tài khoản" ng-model="login.username" ng-keypress="checkEnterKey($event)" class="ng-pristine ng-valid"> <input type="password" placeholder="Mật khẩu" ng-model="login.password" ng-keypress="checkEnterKey($event)" class="ng-pristine ng-valid"> If anyone else know any better way, please weight in. Also, there's some great tutorial playlist that I found super useful: https://www.youtube.com/playlist?list=PL4Jcq5zn02jKpjX0nqI1_fS7mEEb5tw6z https://www.udemy.com/automateit/
    1 point
  6. I think you should replace Select with Activate: Local $oExcel = _Excel_Open() If @error Then Exit _Metro_MsgBox(64, "File Label", "Error creating the Excel application object." _ & @CRLF & "Need Excel on this computer. " _ & @CRLF & "Please contact Support for assistance. ", 400, 11, $Form1) _GUIDisable($Form1, 0, 30) Local $sWorkbook = "C:\Users\asmith\Desktop\DataSheet.xlsx" Local $oWorkbook = _Excel_BookOpen($oExcel, $sWorkbook) If @error Then Exit _Metro_MsgBox($MB_SYSTEMMODAL, "File Label_Network", "Error opening '" & $sWorkbook & "'." _ & @CRLF & "Missing the necessary documents to run this application. " _ & @CRLF & "Please contactfor assistance. ", 400, 11, $Form1) $oWorkbook.sheets("File Label_Network Data").Activate
    1 point
×
×
  • Create New...