|
-
Jun 13th, 2005, 11:44 PM
#1
Thread Starter
New Member
Progress bar in Web Browser(RESOLVED)
How can I make a progress bar represent site loading progress in a web browser?
Btw, I'm using VB 2005.
Thanks!
Last edited by Audidriver224; Jun 14th, 2005 at 06:16 PM.
-
Jun 14th, 2005, 06:07 PM
#2
Thread Starter
New Member
Re: Progress bar in Web Browser
/bump, really need help with this, tried using search but there is only answers about for this topic in the VB Classic section.
-
Dec 22nd, 2005, 04:59 AM
#3
Addicted Member
Re: Progress bar in Web Browser(RESOLVED)
yeh i need help on this aswell please!
-
Dec 22nd, 2005, 05:04 AM
#4
Re: Progress bar in Web Browser(RESOLVED)
OK. I have moved this to the ASP.NET section.
This would require quite a sserious amount of JScript and remoting to achieve what you want. Alas, web and win32 apps are SOOOOOO different. Yea, both us VB code behind the scenes, but that's where the similarity ends I am afraid.
The UI is a whole new ball game, and it's way way harder to produce effects that would have been very simle in a win32 app.
Why has this thread been maked as resolved?
Woka
-
Dec 22nd, 2005, 07:26 AM
#5
Addicted Member
Re: Progress bar in Web Browser(RESOLVED)
dunno - maybe he found an answer on google or sommat. Ok, is it going to be difficult to code it in a win32 app? Cause if it is, im sort of new to this and ill leave it out, thanks
Adam
-
Dec 22nd, 2005, 08:58 AM
#6
Re: Progress bar in Web Browser(RESOLVED)
err...Win32 it's DEAD easy.
VB Code:
For Index As Integer = 1 To 100
ProgressBar.Value = Index
Next Index
As simple as that.
To do this is web you have to be quite advanced at web development 
Sorry, did I say "Quite", I meant "really" 
Woka
-
Dec 22nd, 2005, 11:22 AM
#7
Addicted Member
Re: Progress bar in Web Browser(RESOLVED)
What exactly are you trying to do?
I use progress bars in many of the sites that I do, but they all pertain to certain tasks such as report generation or audio file imports.
There are several methods that can be used, one is to create a table with 2 cells and use javascript to change the size of the first cell, you could use ajax, or you could refresh the page on a timed event.
"There are two ways to write error-free programs. Only the third one works."
"Real programmers don't comment their code. If it was hard to write, it should be hard to understand."
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|