#1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 43
Default Progressbar


hi,

would you like to give me an example to show how to use Progressbar in a
form.


thanks

you

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Progressbar

There is a nice one at
http://www.enhanceddatasystems.com/E...rogressBar.htm

--
HTH

Bob Phillips

(remove nothere from email address if mailing direct)

"EXCEL$B!!(BNEWS" wrote in message
...

hi,

would you like to give me an example to show how to use Progressbar in a
form.


thanks

you



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,298
Default Progressbar

this code in a userform with a command button (btnStart) and a progress bar
control (ProgressBar1)

Option Explicit

Private Sub btnStart_Click()
Dim i As Long
Dim t As Long
With ProgressBar1
.Max = 1000
.Value = 0
End With
For i = 1 To 1000
Me.Repaint
t = Timer
Do
DoEvents
Loop Until Timer < (t + 1)
ProgressBar1.Value = i
Next
MsgBox "Done"
End Sub

"EXCEL NEWS" wrote:


hi,

would you like to give me an example to show how to use Progressbar in a
form.


thanks

you


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,560
Default Progressbar

You will a method by searching on "Progres bar" at john Walkenbach's site:
j-walk.com/ss/

"EXCEL NEWS" wrote:


hi,

would you like to give me an example to show how to use Progressbar in a
form.


thanks

you


  #5   Report Post  
Posted to microsoft.public.excel.programming
baj baj is offline
external usenet poster
 
Posts: 24
Default Progressbar

Have a look at the books of John Walkenbach :

In his book "Excel 2002(2003) Power Programming with VBA" there's an
example of this progressbar

find it at :
http://j-walk.com/ss/books/index.htm



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Progressbar

http://www.j-walk.com/ss/excel/tips/tip34.htm
Displaying a Progress Indicator

--
Regards,
Tom Ogilvy

"David" wrote in message
...
You will a method by searching on "Progres bar" at john Walkenbach's site:
j-walk.com/ss/

"EXCEL?NEWS" wrote:


hi,

would you like to give me an example to show how to use Progressbar in a
form.


thanks

you




  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Progressbar

Also, on line at John's site:

http://www.j-walk.com/ss/excel/tips/tip34.htm
Displaying a Progress Indicator

--
Regards,
Tom Ogilvy


"baj" wrote in message
oups.com...
Have a look at the books of John Walkenbach :

In his book "Excel 2002(2003) Power Programming with VBA" there's an
example of this progressbar

find it at :
http://j-walk.com/ss/books/index.htm



  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 38
Default Progressbar

you just said that

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Progressbar

Perhaps if you read the portions of the threads I was reply to, you would
see that even though the same link was provided, it was provided in a
separate context. While it may appear redundant to someone sounding out the
words, I did have a purpose in doing it. Thanks for your interest.

--
Regards,
Tom Ogilvy





"damorrison" wrote in message
ups.com...
you just said that



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
ProgressBar Control Ayo Excel Discussion (Misc queries) 3 October 18th 08 07:24 AM
Nelp required to integrate ProgressBar Ola2B Excel Discussion (Misc queries) 0 July 20th 07 03:06 PM
Microsoft ProgressBar Control Version 6 Joseph[_47_] Excel Programming 3 November 13th 04 08:09 PM
j-walk progressbar mod question Mike Iacovou Excel Programming 3 June 12th 04 06:47 PM
ProgressBar Out of Sync RDallas Excel Programming 2 January 13th 04 04:25 PM


All times are GMT +1. The time now is 03:51 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"