S
Som
after a certain date(date will provided by me) a password protected MS
excel file or it's data will deleted permanently.
(even if the client user copies (n number of copies) the file to their own
PCs also
from our PC).
I require this option for licence issue... Can u please help me?
can u give me a code which will delete the excel file permanently if
somebody tries to open the file after the specified date ?
how to protect the code in the MS VB editor for macro , so that nobody can
see the code before expiry date / deletion date.
at present my code is
my code to close the file (not deletion)
==============================================+
Private Sub Workbook_Open()
If DateDiff("d", "10/Mar/2009", Date) > 1 Then
Application.ActiveWorkbook.Close
End If
End Sub
==================================================
it is failing again in another PC....
because by default in my client company , the macro level set very high...
so it is
not running in all PCs
msg comnig -- " Macros are disabled because the security level is set very
high. To run the macros , change the security level to a lower setting and
verify the macros are signed & trusted"
, now what to do ??
i cann't change all PC s macro security setting of client location....
so i have to do the job keeping in my mind that " macro security will be
high "
now pls advise
is there any troubleshoot of the above situation ?
-------------------------------------------------------------
atleast , if file gets deleted in 1st shot , there will not be any option of
R & D by the client.
so I think , deletion code can serve the purpose.
pls help me
excel file or it's data will deleted permanently.
(even if the client user copies (n number of copies) the file to their own
PCs also
from our PC).
I require this option for licence issue... Can u please help me?
can u give me a code which will delete the excel file permanently if
somebody tries to open the file after the specified date ?
how to protect the code in the MS VB editor for macro , so that nobody can
see the code before expiry date / deletion date.
at present my code is
my code to close the file (not deletion)
==============================================+
Private Sub Workbook_Open()
If DateDiff("d", "10/Mar/2009", Date) > 1 Then
Application.ActiveWorkbook.Close
End If
End Sub
==================================================
it is failing again in another PC....
because by default in my client company , the macro level set very high...
so it is
not running in all PCs
msg comnig -- " Macros are disabled because the security level is set very
high. To run the macros , change the security level to a lower setting and
verify the macros are signed & trusted"
, now what to do ??
i cann't change all PC s macro security setting of client location....
so i have to do the job keeping in my mind that " macro security will be
high "
now pls advise
is there any troubleshoot of the above situation ?
-------------------------------------------------------------
atleast , if file gets deleted in 1st shot , there will not be any option of
R & D by the client.
so I think , deletion code can serve the purpose.
pls help me