Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 8
Default How do I create a progess bar


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,302
Default How do I create a progess bar

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


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,452
Default How do I create a progess bar

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" wrote in message
...
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
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
Create a macro to create excel line graph with coloured pointers anddata lables anuj datta Charts and Charting in Excel 1 September 30th 09 04:04 PM
create Macro €“ select data, sort by acc no., yr, part no, create P Johnny Excel Programming 0 November 22nd 06 03:18 PM
In progess Steve Excel Programming 1 May 9th 06 03:47 PM
Incremental Progess Indicator Greg Excel Programming 1 April 19th 06 06:59 PM
"Slidey Bar" for Code Progess Chris Gorham Excel Programming 2 September 23rd 05 06:31 AM


All times are GMT +1. The time now is 06:16 AM.

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"