Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 51
Default Msgbox Without ok button

I have macro which runs through 10000 rows,
I would like to have msgbox showing the row numbers, but it should not
have ok buttion.
Just showing only the row numbers till macro is running.

Is this is possible

I have excel 2007.

Thanks
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default Msgbox Without ok button

Hi,

You would probably need a userform to do that but why not use the statusbar
by putting a line like this in your code

Application.StatusBar = "Working on row " & x

Mike

" wrote:

I have macro which runs through 10000 rows,
I would like to have msgbox showing the row numbers, but it should not
have ok buttion.
Just showing only the row numbers till macro is running.

Is this is possible

I have excel 2007.

Thanks

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Msgbox Without ok button

Hi,

Agree with Mike's suggestion or, if you want to display something, use a
userform and update a label on the form like

formname.okbutton.visible=false
formname.statuslabel.caption = "Working on row " & x

And then when you're done, display that you're done and a button to
close the form

formname.statuslabel.caption = "Done - processed " & x & " rows"
formname.okbutton.visible=true

Christoph

Mike H wrote:
Hi,

You would probably need a userform to do that but why not use the statusbar
by putting a line like this in your code

Application.StatusBar = "Working on row " & x

Mike

" wrote:

I have macro which runs through 10000 rows,
I would like to have msgbox showing the row numbers, but it should not
have ok buttion.
Just showing only the row numbers till macro is running.

Is this is possible

I have excel 2007.

Thanks

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 51
Default Msgbox Without ok button

Thanks Mike


Mike H wrote:
Hi,


You would probably need a userform to do that but why not use the statusbar
by putting a line like this in your code


Application.StatusBar = "Working on row " & x


Mike


" wrote:


I have macro which runs through 10000 rows,
I would like to have msgbox showing the row numbers, but it should not
have ok buttion.
Just showing only the row numbers till macro is running.


Is this is possible


I have excel 2007.


Thanks- Hide quoted text -


- Show quoted text -


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
Msgbox button captions miek Excel Programming 2 August 11th 08 11:15 PM
Print button on a msgbox Frank Excel Programming 2 June 3rd 05 12:20 PM
msgbox button constants Justin Excel Programming 2 May 16th 05 08:49 PM
Customize a button on a MsgBox? quartz[_2_] Excel Programming 3 January 10th 05 10:06 PM
Msgbox button labels Marcotte A[_2_] Excel Programming 4 June 8th 04 08:29 AM


All times are GMT +1. The time now is 02:54 PM.

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

About Us

"It's about Microsoft Excel"