Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
JK JK is offline
external usenet poster
 
Posts: 78
Default Mimick MS Progress Indicator?

For visual effect during a long macro, I would show an "animated" progress
indicator similar to the one used by MS. Not to track progress, just a
series of looping green tiles for the user to look at during the macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 618
Default Mimick MS Progress Indicator?

Hi Jim

John Walkenbach has a couple of approaches in his book "Power Programming
with Excel 200x" ... the book is definitely worth getting hold of if you
don't already have it. He also has an article on his website on how to do
it http://j-walk.com/ss/excel/tips/tip34.htm - Displaying a Progress
Indicator

Cheers
JulieD


"JK" wrote in message
...
For visual effect during a long macro, I would show an "animated" progress
indicator similar to the one used by MS. Not to track progress, just a
series of looping green tiles for the user to look at during the macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff




  #3   Report Post  
Posted to microsoft.public.excel.programming
JK JK is offline
external usenet poster
 
Posts: 78
Default Mimick MS Progress Indicator?

Thank you, Judy

Yes, I have the book. But John's progress indicator is not exactly what I'm
looking for.

Regards

"JulieD" wrote in message
...
Hi Jim

John Walkenbach has a couple of approaches in his book "Power Programming
with Excel 200x" ... the book is definitely worth getting hold of if you
don't already have it. He also has an article on his website on how to do
it http://j-walk.com/ss/excel/tips/tip34.htm - Displaying a Progress
Indicator

Cheers
JulieD


"JK" wrote in message
...
For visual effect during a long macro, I would show an "animated"

progress
indicator similar to the one used by MS. Not to track progress, just a
series of looping green tiles for the user to look at during the macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff






  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 618
Default Mimick MS Progress Indicator?

Hi

you mean a userform with an animated graphic on it ... ? nothing to do with
progress at all?

JulieD

"JK" wrote in message
...
Thank you, Judy

Yes, I have the book. But John's progress indicator is not exactly what

I'm
looking for.

Regards

"JulieD" wrote in message
...
Hi Jim

John Walkenbach has a couple of approaches in his book "Power

Programming
with Excel 200x" ... the book is definitely worth getting hold of if you
don't already have it. He also has an article on his website on how to

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

Cheers
JulieD


"JK" wrote in message
...
For visual effect during a long macro, I would show an "animated"

progress
indicator similar to the one used by MS. Not to track progress, just a
series of looping green tiles for the user to look at during the

macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff








  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,489
Default Mimick MS Progress Indicator?

Hi Jim,

I have a few alternatives here.
http://www.andypope.info/vba/pmeter.htm

If you wanted to create something like the Delete progress then you will
need a set of images laid out on the userform. Then where the code
normally extends the progress bar you will need to change the visibilty
of the images to mimic the animation.

Cheers
Andy

JK wrote:
Thank you, Judy

Yes, I have the book. But John's progress indicator is not exactly what I'm
looking for.

Regards

"JulieD" wrote in message
...

Hi Jim

John Walkenbach has a couple of approaches in his book "Power Programming
with Excel 200x" ... the book is definitely worth getting hold of if you
don't already have it. He also has an article on his website on how to do
it http://j-walk.com/ss/excel/tips/tip34.htm - Displaying a Progress
Indicator

Cheers
JulieD


"JK" wrote in message
. ..

For visual effect during a long macro, I would show an "animated"


progress

indicator similar to the one used by MS. Not to track progress, just a
series of looping green tiles for the user to look at during the macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff







--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info


  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 811
Default Mimick MS Progress Indicator?


It sounds like he's looking for something more like this:

http://www.appspro.com/downloads/ProgressBarClass.zip

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *


"Andy Pope" wrote in message
...
Hi Jim,

I have a few alternatives here.
http://www.andypope.info/vba/pmeter.htm

If you wanted to create something like the Delete progress then you will
need a set of images laid out on the userform. Then where the code
normally extends the progress bar you will need to change the visibilty
of the images to mimic the animation.

Cheers
Andy

JK wrote:
Thank you, Judy

Yes, I have the book. But John's progress indicator is not exactly what

I'm
looking for.

Regards

"JulieD" wrote in message
...

Hi Jim

John Walkenbach has a couple of approaches in his book "Power

Programming
with Excel 200x" ... the book is definitely worth getting hold of if you
don't already have it. He also has an article on his website on how to

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

Cheers
JulieD


"JK" wrote in message
. ..

For visual effect during a long macro, I would show an "animated"


progress

indicator similar to the one used by MS. Not to track progress, just a
series of looping green tiles for the user to look at during the macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff







--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info



  #7   Report Post  
Posted to microsoft.public.excel.programming
JK JK is offline
external usenet poster
 
Posts: 78
Default Mimick MS Progress Indicator?

Thank you all. Rob, excellent procedure. However, still not what I have in
mind. If you'll bear with me (I don't blame you if you won't), what I'm
refering to appears to be a MsgBox with a Frame and one colored Label (they
use light green) that loops from from left to right every second or so while
a procedure is running. MS uses it, not like it does a progress indicator,
but more like a visual affect simply to assure the user that something is
running.

Regards...Jim Kobzeff

"Rob Bovey" wrote in message
...

It sounds like he's looking for something more like this:

http://www.appspro.com/downloads/ProgressBarClass.zip

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *


"Andy Pope" wrote in message
...
Hi Jim,

I have a few alternatives here.
http://www.andypope.info/vba/pmeter.htm

If you wanted to create something like the Delete progress then you will
need a set of images laid out on the userform. Then where the code
normally extends the progress bar you will need to change the visibilty
of the images to mimic the animation.

Cheers
Andy

JK wrote:
Thank you, Judy

Yes, I have the book. But John's progress indicator is not exactly

what
I'm
looking for.

Regards

"JulieD" wrote in message
...

Hi Jim

John Walkenbach has a couple of approaches in his book "Power

Programming
with Excel 200x" ... the book is definitely worth getting hold of if

you
don't already have it. He also has an article on his website on how

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

Cheers
JulieD


"JK" wrote in message
. ..

For visual effect during a long macro, I would show an "animated"

progress

indicator similar to the one used by MS. Not to track progress, just

a
series of looping green tiles for the user to look at during the

macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff







--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info





  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 811
Default Mimick MS Progress Indicator?

HI Jim,

It looks to me like the original example you were pointed to at:

http://j-walk.com/ss/excel/tips/tip34.htm

could easily be modified to do what you're asking.

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *


"JK" wrote in message
...
Thank you all. Rob, excellent procedure. However, still not what I have in
mind. If you'll bear with me (I don't blame you if you won't), what I'm
refering to appears to be a MsgBox with a Frame and one colored Label

(they
use light green) that loops from from left to right every second or so

while
a procedure is running. MS uses it, not like it does a progress indicator,
but more like a visual affect simply to assure the user that something is
running.

Regards...Jim Kobzeff

"Rob Bovey" wrote in message
...

It sounds like he's looking for something more like this:

http://www.appspro.com/downloads/ProgressBarClass.zip

--
Rob Bovey, MCSE, MCSD, Excel MVP
Application Professionals
http://www.appspro.com/

* Please post all replies to this newsgroup *
* I delete all unsolicited e-mail responses *


"Andy Pope" wrote in message
...
Hi Jim,

I have a few alternatives here.
http://www.andypope.info/vba/pmeter.htm

If you wanted to create something like the Delete progress then you

will
need a set of images laid out on the userform. Then where the code
normally extends the progress bar you will need to change the

visibilty
of the images to mimic the animation.

Cheers
Andy

JK wrote:
Thank you, Judy

Yes, I have the book. But John's progress indicator is not exactly

what
I'm
looking for.

Regards

"JulieD" wrote in message
...

Hi Jim

John Walkenbach has a couple of approaches in his book "Power

Programming
with Excel 200x" ... the book is definitely worth getting hold of if

you
don't already have it. He also has an article on his website on how

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

Cheers
JulieD


"JK" wrote in message
. ..

For visual effect during a long macro, I would show an "animated"

progress

indicator similar to the one used by MS. Not to track progress,

just
a
series of looping green tiles for the user to look at during the

macro.

Does anyone know how to write, or where I can obtain? Thank you.

Jim Kobzeff







--

Andy Pope, Microsoft MVP - Excel
http://www.andypope.info







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
Displaying a Progress Indicator (VBA) shapiro Excel Discussion (Misc queries) 1 June 4th 07 02:34 AM
Progress Indicator in form Paul_Russell[_2_] Excel Programming 3 February 4th 04 10:38 PM
UserForm as Progress Indicator MWE Excel Programming 6 January 19th 04 03:22 PM
PROGRESS INDICATOR jason Excel Programming 6 October 3rd 03 01:58 AM
Popup Progress Indicator David W[_3_] Excel Programming 1 August 18th 03 08:29 PM


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