GLBasic forum

Main forum => GLBasic - en => Topic started by: ampos on 2011-Feb-26

Title: Download with progress
Post by: ampos on 2011-Feb-26
Does someone has a way to download files from the internet by steps, so I can draw a progress bar while downloading?
Title: Re: Download with progress
Post by: MrTAToad on 2011-Feb-27
Not in a platform independant way - and the Windows routine requires extensive C code
Title: Re: Download with progress
Post by: Moru on 2011-Feb-28
Only way I could figure was to use PHP to send blocks of data and assemble them on reception to the game.
Title: Re: Download with progress
Post by: Kitty Hello on 2011-Feb-28
you can do that. Take a look at my Http_reuqest code. It's basically a tiny webclient code where you can display a prograss in the loop.
Title: Re: Download with progress
Post by: MrTAToad on 2011-Feb-28
Where is that ?
Title: Re: Download with progress
Post by: Kitty Hello on 2011-Feb-28
this one:http://www.glbasic.com/forum/index.php?topic=2866.0 (http://www.glbasic.com/forum/index.php?topic=2866.0)

The forum is a bit of a mess :(
Title: Re: Download with progress
Post by: MrTAToad on 2011-Feb-28
Clever way of doing it!