Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Microsoft ProgressBar Control Version 6


Hi

Anyone know where I can get some sample code for this?

Cheer

--
Josep

-----------------------------------------------------------------------
Joseph's Profile: http://www.excelforum.com/member.php...nfo&userid=563
View this thread: http://www.excelforum.com/showthread.php?threadid=27798

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Microsoft ProgressBar Control Version 6

A few examples

http://www.enhanceddatasystems.com/E...rogressBar.htm

www.j-walk.com/ss/files/developer.htm, look for the item entitled 'Control
the LED Display in the StatusBar
http://www.cpearson.com/excel/Progress.htm


http://support.microsoft.com/default...b;EN-US;170782
XL97: How to Display a Progress Bar with a User Form

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Joseph" wrote in message
...

Hi

Anyone know where I can get some sample code for this?

Cheers


--
Joseph


------------------------------------------------------------------------
Joseph's Profile:

http://www.excelforum.com/member.php...fo&userid=5637
View this thread: http://www.excelforum.com/showthread...hreadid=277989



  #3   Report Post  
Posted to microsoft.public.excel.programming
TK TK is offline
external usenet poster
 
Posts: 177
Default Microsoft ProgressBar Control Version 6

Hi Joseph

How about right here?


Anyone know where I can get some sample code for this?


You will find the ProgressBar control:
From a User form "tools additional controls"
or
From a Worksheet "More controls"

To run the sample, place a ProgressBar on the worksheet
set the max value to 10000 e.i.
(right click the ProgressBar/properties/max/10000)

Private Sub CommandButton1_Click()

Dim intCounter As Integer
Dim i As Integer
Dim sum As Integer
i = 0
ProgressBar1.Visible = True '///// Microsoft Windows Common Control 6.0

For i = 1 To 10000

Do While intCounter < i
intCounter = intCounter + 1 '///// For the ProgressBar.
ProgressBar1.Value = intCounter '///// Update progress.''
sum = sum + 1

Loop
Next i

ProgressBar1.Visible = False

End Sub

Good Luck
TK
  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,236
Default Microsoft ProgressBar Control Version 6

I have a couple of examples on my website. One statusbar, one commandbar.


--
Rob van Gelder - http://www.vangelder.co.nz/excel


"Joseph" wrote in message
...

Hi

Anyone know where I can get some sample code for this?

Cheers


--
Joseph


------------------------------------------------------------------------
Joseph's Profile:
http://www.excelforum.com/member.php...fo&userid=5637
View this thread: http://www.excelforum.com/showthread...hreadid=277989



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
Microsoft 2007 Version PMAC Excel Discussion (Misc queries) 1 September 22nd 09 07:40 PM
ProgressBar control displays erratically on Open circuit_breaker Excel Worksheet Functions 0 July 10th 09 12:33 PM
ProgressBar Control Ayo Excel Discussion (Misc queries) 3 October 18th 08 07:24 AM
Microsoft XP and 2003 version [email protected] Excel Discussion (Misc queries) 2 December 7th 04 11:32 AM
OWC version control Tom Lavedas Excel Programming 0 September 23rd 04 03:17 PM


All times are GMT +1. The time now is 11:28 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"