S
sean
Hi,
I would be very much thankful if someone could help me.Ok,
let's us share this,if you want to prevent someone to save
your workbook to another name, you can simply do the
following and it is written in Private Module of the
Worksheet as follows:-
Private Sub Workbook_BeforeSave _
(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
If SaveAsUI = True Then Cancel = True
End Sub
This prompts me to ask you how if I want to prevent the
workbook from being copied as the"protected" hidden rows
can be viewed once the workbook is copied to another new
workbook,right? and the crucial part is that the hidden
rows contain confidential data($$$)...Anyone can help?
Sean Yeap
I would be very much thankful if someone could help me.Ok,
let's us share this,if you want to prevent someone to save
your workbook to another name, you can simply do the
following and it is written in Private Module of the
Worksheet as follows:-
Private Sub Workbook_BeforeSave _
(ByVal SaveAsUI As Boolean, Cancel As
Boolean)
If SaveAsUI = True Then Cancel = True
End Sub
This prompts me to ask you how if I want to prevent the
workbook from being copied as the"protected" hidden rows
can be viewed once the workbook is copied to another new
workbook,right? and the crucial part is that the hidden
rows contain confidential data($$$)...Anyone can help?
Sean Yeap