|
-
Jan 25th, 2010, 10:14 PM
#1
Thread Starter
Addicted Member
How to show loading message in progress bar
Is is possible that the progressbar show a message in a erasing way, while in progress,...........?????????
-
Jan 25th, 2010, 10:43 PM
#2
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,...
-
Jan 25th, 2010, 11:03 PM
#3
Thread Starter
Addicted Member
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................???????????
-
Jan 25th, 2010, 11:19 PM
#4
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.
-
Jan 25th, 2010, 11:23 PM
#5
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,...
-
Jan 26th, 2010, 08:47 AM
#6
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|