Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
How can I add a message " Please Wait Program Is Still Running " while the
program is running. Thanks in advance. Maperalia |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Create a userform in the VBE with you message
Sub Main() UserForm1.Show vbModeless ' current code or call current code Unload Userform1 End Sub -- Regards, Tom Ogilvy "maperalia" wrote in message ... How can I add a message " Please Wait Program Is Still Running " while the program is running. Thanks in advance. Maperalia |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I tend to use Application.Statusbar to notify users...
-- HTH... Jim Thomlinson "maperalia" wrote: How can I add a message " Please Wait Program Is Still Running " while the program is running. Thanks in advance. Maperalia |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Jim;
How do you use this application? Maperalia "Jim Thomlinson" wrote: I tend to use Application.Statusbar to notify users... -- HTH... Jim Thomlinson "maperalia" wrote: How can I add a message " Please Wait Program Is Still Running " while the program is running. Thanks in advance. Maperalia |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Tom;
Thanks for the code. I have applied it and I got blank message. How can I write the information in the form?. Besides the title of the form is Userform1 and I want to change it to "Message For You" instead. Best regards. Maperalia "Tom Ogilvy" wrote: Create a userform in the VBE with you message Sub Main() UserForm1.Show vbModeless ' current code or call current code Unload Userform1 End Sub -- Regards, Tom Ogilvy "maperalia" wrote in message ... How can I add a message " Please Wait Program Is Still Running " while the program is running. Thanks in advance. Maperalia |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
In the vbe, go in and select the Userform
In the properties of the userform, change the caption properties of the userform to whatever you want it to be. (If the properties window isn't visible in the VBE, hit F4 or go to View=Properties in the menu) You should see the control toolbox next to the userform click the label, then click on the Userform and hold down the mouse button while you drag down and to the right to size the label. Release the mouse. Make sure the label is selected, then go to properties and place your message in the captions property. Select the font property and make the text look like you want it. -- Regards, Tom Ogilvy "maperalia" wrote in message ... Tom; Thanks for the code. I have applied it and I got blank message. How can I write the information in the form?. Besides the title of the form is Userform1 and I want to change it to "Message For You" instead. Best regards. Maperalia "Tom Ogilvy" wrote: Create a userform in the VBE with you message Sub Main() UserForm1.Show vbModeless ' current code or call current code Unload Userform1 End Sub -- Regards, Tom Ogilvy "maperalia" wrote in message ... How can I add a message " Please Wait Program Is Still Running " while the program is running. Thanks in advance. Maperalia |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
The status bar is located in the bottom right hand corner of the excel window
(usually says ready or dispays the calculation percent...) Sub BigLongProcedure() on error goto errorhandler application.statusbar = "Processing data. Please Wait..." 'execute your code Errorhandler: application.statusbar = false end sub If you can easily determine the percentage of completion based on the number of loops you can change the display to show the percentage of completion similar to when a large calculation is pending... -- HTH... Jim Thomlinson "maperalia" wrote: Jim; How do you use this application? Maperalia "Jim Thomlinson" wrote: I tend to use Application.Statusbar to notify users... -- HTH... Jim Thomlinson "maperalia" wrote: How can I add a message " Please Wait Program Is Still Running " while the program is running. Thanks in advance. Maperalia |
#8
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Try this... http://j-walk.com/ss/excel/tips/tip34.ht -- JWM ----------------------------------------------------------------------- JWM6's Profile: http://www.excelforum.com/member.php...fo&userid=3341 View this thread: http://www.excelforum.com/showthread.php?threadid=50549 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can I program a message box to open when a user opens and exc. | Excel Programming | |||
How to acknowledge a message box from VB program? | Excel Programming | |||
Program not working after upgrade | Excel Programming | |||
message box program flow | Excel Programming | |||
message box program flow | Excel Programming |