Read only

S

Steven

I have an excel file with a list of commonly used files and the user selects
a file from the list and it opens the file. But if someone is in the file
it takes a little longer to open but then it opens as read only but the user
does not get notification that the file was opened read only. Then if they
do something and then try to save the file it will tell them it is read only.
How do you tell the user that the file was opened read only right after the
file was opened.

This is what I am using. vOpen is a variable of the file that was seleted.
Workbooks.Open Filename:=vOpen, UpdateLinks:=3

Thank you for your help,

Steven
 
J

Jim Rech

If ActiveWorkbook.ReadOnly Then DoWarning

--
Jim
|I have an excel file with a list of commonly used files and the user
selects
| a file from the list and it opens the file. But if someone is in the
file
| it takes a little longer to open but then it opens as read only but the
user
| does not get notification that the file was opened read only. Then if
they
| do something and then try to save the file it will tell them it is read
only.
| How do you tell the user that the file was opened read only right after
the
| file was opened.
|
| This is what I am using. vOpen is a variable of the file that was
seleted.
| Workbooks.Open Filename:=vOpen, UpdateLinks:=3
|
| Thank you for your help,
|
| Steven
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top