PC Review


Reply
Thread Tools Rate Thread

How do I create a progess bar

 
 
=?Utf-8?B?aXp6eQ==?=
Guest
Posts: n/a
 
      7th Jun 2007

 
Reply With Quote
 
 
 
 
Norman Jones
Guest
Posts: n/a
 
      7th Jun 2007
Hi Izzy,

(1) See Chip Pearson at:

Progress Indicator For VBA
http://www.cpearson.com/excel/Progress.htm


(2) Alternatively see Robin Hammond' suggestions at:

A Progress Bar Class
http://www.enhanceddatasystems.com:8...rogressBar.htm


(3) See John Walkenbach a:

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

(4) See also Andy Pope at:

Progress Meters
http://www.andypope.info/vba/pmeter.htm

(5) See Michel Pierron's NG suggestion:

http://tinyurl.com/27jyvm



---
Regards,
Norman


 
Reply With Quote
 
RB Smissaert
Guest
Posts: n/a
 
      7th Jun 2007
Or a very simple one:

Sub StatusProgressBar(lCounter As Long, _
lMax As Long, _
lInterval As Long, _
Optional strText As String)

Dim lStripes As Long

If lCounter Mod lInterval = 0 Then
lStripes = Round((lCounter / lMax) * 100, 0)
Application.StatusBar = strText & _
String(lStripes, "|") & _
String(100 - lStripes, ".") & "|"
End If

End Sub


RBS


"Norman Jones" <(E-Mail Removed)> wrote in message
news:ee9qM%(E-Mail Removed)...
> Hi Izzy,
>
> (1) See Chip Pearson at:
>
> Progress Indicator For VBA
> http://www.cpearson.com/excel/Progress.htm
>
>
> (2) Alternatively see Robin Hammond' suggestions at:
>
> A Progress Bar Class
> http://www.enhanceddatasystems.com:8...rogressBar.htm
>
>
> (3) See John Walkenbach a:
>
> Displaying a Progress Indicator
> http://j-walk.com/ss/excel/tips/tip34.htm
>
> (4) See also Andy Pope at:
>
> Progress Meters
> http://www.andypope.info/vba/pmeter.htm
>
> (5) See Michel Pierron's NG suggestion:
>
> http://tinyurl.com/27jyvm
>
>
>
> ---
> Regards,
> Norman
>
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Boot up progess indicator =?Utf-8?B?UFNSdW1iYWdo?= Windows XP General 3 6th Nov 2006 07:43 PM
In progess =?Utf-8?B?U3RldmU=?= Microsoft Excel Programming 1 9th May 2006 03:47 PM
show progess missing Microsoft Newsgroups Microsoft Outlook Discussion 0 26th Mar 2004 03:57 PM
Progess Bar Anthony Viscomi Microsoft Access 1 19th Mar 2004 08:08 PM
XMLDocument.Load Progess Dave Brown Microsoft ASP .NET 3 4th Feb 2004 06:11 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:49 AM.