Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 10/01/2015 in all areas

  1. jguinch

    Attachment blocking in IE

    Another way could be to use the "instance mode" with _IEAttach : in this case, the attachment can operates without having the IE window actived. $oIE = _IEAttach("", "instance")
    1 point
  2. I tried this code, without WinHTTP #Include <IE.au3> $oIE = _IECreate("http://www.pandawill.com/auction-product", 0, 1) While 1 $sContent = _IEBodyReadHTML($oIE) $aRes = StringRegExp($sContent, '(?s)<div id="countdown-item1">.+?none;">(\d)<.+?none;">(\d)<.+?none;">(\d)<.+?none;">(\d)<.+?none;">(\d)<.+?none;">(\d)<.+?none;">(\d)<.+?none;">(\d)<', 3) If IsArray($aRes) Then ConsoleWrite($aRes[0] & $aRes[1] & " d :" & $aRes[2] & $aRes[3] & " h :" & $aRes[4] & $aRes[5] & " m :" & $aRes[6] & $aRes[7] & " s" & @CRLF) Sleep(1000) WEnd
    1 point
  3. Hi All, Here is a little GUI I built a while back to learn how to use INI files to store information ( variables ) between opening and closing certain programs. I just recently pulled it back out and cleaned it up and debugged it, if you find any bugs please kill them. The FTP connection part was just so it would have purpose... To cut down on clutter there are no labels, hover mouse over to see what things are. cya, Bill
    1 point
  4. jchd

    Text vs Binary

    Read file in binary mode if the file is binary, else text mode, period. Your rant is pure uneducated BS since you clearly don't understand what you're talking about. Overhead my ass: this is over your head.
    1 point
×
×
  • Create New...