Results 1 to 7 of 7

Thread: Progress bar in Web Browser(RESOLVED)

  1. #1

    Thread Starter
    New Member
    Join Date
    Jun 2005
    Location
    SoCal
    Posts
    11

    Resolved 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.

  2. #2

    Thread Starter
    New Member
    Join Date
    Jun 2005
    Location
    SoCal
    Posts
    11

    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.

  3. #3
    Addicted Member adamlonsdale's Avatar
    Join Date
    Oct 2005
    Posts
    210

    Re: Progress bar in Web Browser(RESOLVED)

    yeh i need help on this aswell please!

  4. #4
    Super Moderator Wokawidget's Avatar
    Join Date
    Nov 2001
    Location
    Headingly Occupation: Classified
    Posts
    9,632

    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

  5. #5
    Addicted Member adamlonsdale's Avatar
    Join Date
    Oct 2005
    Posts
    210

    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

  6. #6
    Super Moderator Wokawidget's Avatar
    Join Date
    Nov 2001
    Location
    Headingly Occupation: Classified
    Posts
    9,632

    Re: Progress bar in Web Browser(RESOLVED)

    err...Win32 it's DEAD easy.
    VB Code:
    1. For Index As Integer = 1 To 100
    2.     ProgressBar.Value = Index
    3. 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

  7. #7
    Addicted Member Smie's Avatar
    Join Date
    Jun 1999
    Location
    Columbus, OH
    Posts
    249

    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
  •  



Click Here to Expand Forum to Full Width