Thank you very much Pierre. That's what i needed. EFleming
-----Mensagem Original----- De: "Pierre Sahores" <[EMAIL PROTECTED]> Para: <[EMAIL PROTECTED]> Enviada em: Domingo, 11 de Novembro de 2001 21:15 Assunto: Re: Progress Bar > Eduardo Volpi a �crit : > > > > Hi list, > > > > Please i need your help to have a progress bar displayed while a given file > > is beeing compressed. In such a way that the progress bar is complete only > > when the compression is done. > > > > Thanks in advance > > > > EFleming > > > > _________________________________________________________ > > Do You Yahoo!? > > Get your free @yahoo.com address at http://mail.yahoo.com > > > > Archives: http://www.mail-archive.com/[email protected]/ > > Info: http://www.xworlds.com/metacard/mailinglist.htm > > Please send bug reports to <[EMAIL PROTECTED]>, not this list. > > Hi Eduardo, > > You can try something like this : > > > on mouseUp > > if the shiftkey is down then edit script of me > > else > > set cursor to watch > > put 100 into oldcolls > > put "0" into stfwd > > put (102 / oldcolls) * 2 into gofwd > > put "" into Retour > > repeat with ltr = 1 to oldcolls > > wait 10 # to replace by what ever you need > > put ltr & "/" & oldcolls into fld "ETrait" # the counter fld > > add gofwd to stfwd > > get the left of fld "progress" # the progressbar fld > > set the width of fld "progress" to stfwd > > set the left of fld "progress" to it > > end repeat > > end if > > end mouseUp > > Regards, Pierre Sahores > > WEB & VPN applications & databases servers > Inspection acad�mique de Seine-Saint-Denis > Qualifier & produire l'avantage comp�titif > > Archives: http://www.mail-archive.com/[email protected]/ > Info: http://www.xworlds.com/metacard/mailinglist.htm > Please send bug reports to <[EMAIL PROTECTED]>, not this list. _________________________________________________________ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com Archives: http://www.mail-archive.com/[email protected]/ Info: http://www.xworlds.com/metacard/mailinglist.htm Please send bug reports to <[EMAIL PROTECTED]>, not this list.
