Results 1 to 6 of 6

Thread: How to show loading message in progress bar

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Dec 2009
    Location
    India
    Posts
    158

    Question How to show loading message in progress bar

    Is is possible that the progressbar show a message in a erasing way, while in progress,...........?????????

  2. #2
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: How to show loading message in progress bar

    Some more explanation needed.....

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  3. #3

    Thread Starter
    Addicted Member
    Join Date
    Dec 2009
    Location
    India
    Posts
    158

    Re: How to show loading message in progress bar

    I want that a message should show in the prograss bar, which will erased with the loading progress of the progress bar........... something like number of progress bers are showing % of loading in it.....is it possible to show message in a progress bar................???????????

  4. #4
    PowerPoster techgnome's Avatar
    Join Date
    May 2002
    Posts
    34,687

    Re: How to show loading message in progress bar

    uh, no. it is not. at best you can put a label over the progress bar. but it twon't erase.


    -tg

    edit - I suppose if you REALLY have the inclination, you can build your own. then you could make it do anything you want.
    * I don't respond to private (PM) requests for help. It's not conducive to the general learning of others.*
    * I also don't respond to friend requests. Save a few bits and don't bother. I'll just end up rejecting anyways.*
    * How to get EFFECTIVE help: The Hitchhiker's Guide to Getting Help at VBF - Removing eels from your hovercraft *
    * How to Use Parameters * Create Disconnected ADO Recordset Clones * Set your VB6 ActiveX Compatibility * Get rid of those pesky VB Line Numbers * I swear I saved my data, where'd it run off to??? *

  5. #5
    Freelancer akhileshbc's Avatar
    Join Date
    Jun 2008
    Location
    Trivandrum, Kerala, India
    Posts
    7,652

    Re: How to show loading message in progress bar

    Normal ProgressBar won't allow the display of text(above the progress bar, just like you had seen in Setup programs). But thirdparty components are there, which provide this functionality.

    If you want to display the text somewhere else(ie. not above the progressbar -> what I mean is text within the boundary of the progressbar is not possible), then you can show the Progressbar's value in a label followed by the "%"...

    Example:
    Code:
    Private Sub Timer1_Timer()
    If ProgressBar1.Value < 100 Then
      ProgressBar1.Value = ProgressBar1.Value + 1 '~~~> For incrementing the progressbar's value
      Label1.Caption = CStr(ProgressBar1.Value) & "%" '~~~> For displaying the % in a Labelbox
    Else
      Timer1.Enabled = False
    End If
    End Sub

    If my post was helpful to you, then express your gratitude using Rate this Post.
    And if your problem is SOLVED, then please Mark the Thread as RESOLVED (see it in action - video)
    My system: AMD FX 6100, Gigabyte Motherboard, 8 GB Crossair Vengance, Cooler Master 450W Thunder PSU, 1.4 TB HDD, 18.5" TFT(Wide), Antec V1 Cabinet

    Social Group: VBForums - Developers from India


    Skills: PHP, MySQL, jQuery, VB.Net, Photoshop, CodeIgniter, Bootstrap,...

  6. #6
    Fanatic Member
    Join Date
    Mar 2009
    Posts
    804

    Re: How to show loading message in progress bar


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