When a user exist my workbook, they're prompted to save each time. I don't want them to be prompted; the workbook should never be saved. How can I prevent the message, and how can I disable the File/Save menu option?
When a user exist my workbook, they're prompted to save each time. I don't want them to be prompted; the workbook should never be saved. How can I prevent the message, and how can I disable the File/Save menu option?
If you search the forums, or even google, this can be found quite easily...
In the future try to do so first, otherwise put this code in your 'ThisWorkbook' module (push alt+f11 to pull open your vba editor, double clik 'thisworkbook' and copy/paste the following code, then save the workbook - follow these steps and you will no longer be prompted to save).
You can disable the file save menu by exploring the commandbars feature...![]()
Private Sub Workbook_BeforeClose(Cancel As Boolean) ThisWorkbook.Saved = True End Sub
You could do something like...
![]()
Private Sub Workbook_Open() CommandBars("File").Controls("The Name of the control you want to disable").Enabled = False 'note, a control is simply the name of the function you want to use on a menu, such as click "File" >> Then click "Save" - in this case, the commandbar is the file menu, and the control is "Save" End Sub
Last edited by docMed; 07-11-2011 at 01:12 AM.
You can't prevent them saving. All they need to do is open without enabling macros.
Disabling a commandbar on opening will require it to be restored on closing.
Hope that helps.
RoyUK
--------
For Excel Tips & Solutions, free examples and tutorials why not check out my web site
Free DataBaseForm example
Well, it sounds like the workbooks simply being used to either calculate temporary values, or be viewed for constant information - in this case, just set the workbook to read only, which will work around your source file being accidentally saved at least. And yes, you can disable the commandbar and enable it upon closing if you desire so.
You can 'prevent saving' using the workbook as an AddIn.
Or
Always offer the user a copy of the 'not-to-be-saved' workbook, using
If you want to assist the user maximally you'd best use a userform.![]()
Workbooks.add "E:\OF\original.xls"
Last edited by snb; 07-11-2011 at 03:39 AM.
For the code from DocMed, do I post it to the ThisWorkbook under Excel Objects? If so, it's not working. How do I make it execut the code?
If no, where should it go? Sorry, a little new to this. My questions are exceeding my skill level at this point.
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks