TheWebz Posted October 27, 2013 Posted October 27, 2013 Func update() Global $download = InetGet( "http://hacker298.webs.com/versao.ini", "versao.ini", 0, 1 ) Global $tamanho = 21 ProgressOn( "Actualizações", "Verificando actualizacões...", "Scaning.." ) Do Global $temporeal = InetGetInfo( $download, 0 ) Global $percentagemfeita = ($temporeal*100)/$tamanho ProgressSet( $percentagemfeita ) Until $percentagemfeita = 21 InetClose( $download ) ProgressOff() main() EndFunc Why progress bar doesn't disapear?
Solution martin Posted October 27, 2013 Solution Posted October 27, 2013 Global $download = InetGet("http://hacker298.webs.com/versao.ini", "versao.ini", 0, 1) Global $tamanho = 21 ProgressOn("Actualizações", "Verificando actualizacões...", "Scaning..") $lasttemp = -1 $lastp = -1 Do Global $temporeal = InetGetInfo($download, 0) if $temporeal <> $lasttemp then ConsoleWrite($temporeal & @LF) $lastTemp = $temporeal Global $percentagemfeita = $temporeal * 100/ $tamanho if $lastp <> $percentagemfeita then ConsoleWrite($percentagemfeita & @LF) $lastp = $percentagemfeita ProgressSet($percentagemfeita) Until $percentagemfeita = 100;//21 InetClose($download) sleep(9000) ProgressOff() Serial port communications UDF Includes functions for binary transmission and reception.printing UDF Useful for graphs, forms, labels, reports etc.Add User Call Tips to SciTE for functions in UDFs not included with AutoIt and for your own scripts.Functions with parameters in OnEvent mode and for Hot Keys One function replaces GuiSetOnEvent, GuiCtrlSetOnEvent and HotKeySet.UDF IsConnected2 for notification of status of connected state of many urls or IPs, without slowing the script.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now