Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Remove option to save

How do I make a shared excel file, when opened, to not include the option to
save, save as, save as webpage, etc€¦.. And I would also like to remove the
little save icon on the toolbar. All this while not affecting the users
program when not accessing the specific file.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 236
Default Remove option to save

Put code in the 'This Workbook' 'BeforeSave' procedure that closes the
workbook instead of saving it. Something like...

Private Sub Workbook_BeforeSave(ByVal SaveAsUI As Boolean, Cancel As Boolean)
MsgBox "Not this time"
ThisWorkbook.Saved = True
ThisWorkbook.Close
End Sub

HTH,
Gary Brown


"Micropro76" wrote:

How do I make a shared excel file, when opened, to not include the option to
save, save as, save as webpage, etc€¦.. And I would also like to remove the
little save icon on the toolbar. All this while not affecting the users
program when not accessing the specific file.

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
Save as .xla option is not coming when I try to save Parag Excel Discussion (Misc queries) 3 January 28th 09 06:28 AM
How do I remove hyperlink if 'remove' option is disabled Vipul New Users to Excel 1 January 8th 08 02:34 PM
how to remove list option VIVEKMANE Excel Discussion (Misc queries) 2 October 23rd 07 12:41 PM
How can i remove the several hyperlink option after entering the . [email protected] Excel Discussion (Misc queries) 1 June 7th 06 03:27 PM
How can i remove the several hyperlink option after entering the . [email protected] Excel Discussion (Misc queries) 2 June 7th 06 03:23 PM


All times are GMT +1. The time now is 11:51 AM.

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"