display message "opening file"

clares

Well-known Member
Joined
Mar 14, 2002
Messages
557
I'm sure this is possible but is there any way that I can display a message like "file opening" and a progress bar to display the progress!! Has anyone any ideas on how to achieve this!!

Thanks in advance
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
Hi clares

This can be done, however I would strongly advise against it as it can only make the opeing time longer! Besides if the "Status bar" is visible this should already be happening.

A little trick that I often use is to have a TextBox on a Sheet with some informative text inside. I then set the size to zero and its color to suit the background.

I then run some code like below on starting the macro and on finishing.

Sub ShowMessage()
With Sheet12.Shapes("PrintMessage")
.Fill.Visible = msoTrue
.Fill.ForeColor.SchemeColor = 62
.Width = 170.25
.Height = 17.25
End With
End Sub

Sub HideMessage()
With Sheet12.Shapes("PrintMessage")
.Width = 0
.Height = 0
.Fill.Visible = msoFalse
End With
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Thanks Dave - If it slows to much I will take it off, but would like to give it a go.
 
Upvote 0

Forum statistics

Threads
1,214,542
Messages
6,120,116
Members
448,945
Latest member
Vmanchoppy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top