Jump to content
Advert

PhilRip

Members
  • Posts

    18
  • Joined

  • Last visited

PhilRip's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Regardless of server and time the speed seems to be limited to 130kb/s. I used the program several months ago and now again, but same problem. anyone else having speed-problems?
  2. If @hour=7 then exit (short, simple, works ) oh BlackPhoenix mentioned it already
  3. use: InetGet($img, "aaa.jpg", 1) the last flag caused that the program did not wait for the download to complete (so it exited)
  4. what about a !v (ctrl-v) hotkey?
  5. Func _Randomstring($length) $chars= StringSplit("ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789","") $String = "" $i=0 Do If $length<=0 then ExitLoop $String &= $chars[Random(1,$chars[0])] $i += 1 Until $i = $length Return $String EndFunc
  6. #Include <File.au3> dim $html $file=@ScriptDir & "\html.txt" ; here the file with the html _FileReadToArray($file, $html) For $i=1 to $html[0] If StringLeft($html[$i],1) <> "<" Then FileWriteLine("new.txt", $html[$i]) ; output in new.txt ExitLoop ; delete this for more/all lines not starting with "<" EndIf Next
  7. #include <Array.au3> #include <File.au3> Dim $sFile = @ScriptDir & '\blah.txt' Dim $aLines _FileReadToArray($sFile, $aLines) If @error Then MsgBox(0, "", "File does not exist") Exit EndIf FileDelete($sFile) For $i=1 to $aLines[0] If $aLines[$i]<>"" Then FileWriteLine($sFile,$aLines[$i]) Next
  8. GUICtrlSetFont($MonthCombo, 14, 300) GUICtrlSetFont($DayCombo, 14, 300)
  9. no, there is no === in autoit
  10. just change If $strRead = $strRead2 ThenoÝ÷ ÚÚºÚ"µÍY ÌÍÜÝXYOH ÌÍÜÝXY[
  11. to fix: if you close the child window, the whole program closes
  12. same error for me....what to do?
  13. how to fix the "Only Object-type variables allowed in an "With"" ?
  14. good job! i'll take it p.s. appearance looks like copied from μtorrent
×
×
  • Create New...