View Single Post
  #16   Report Post  
Posted to microsoft.public.excel.misc
Som Som is offline
external usenet poster
 
Posts: 26
Default Expiry of MS Excel file

dear all,

thanks for your involvement .

now the file is deleting if macro runs ....

1. how protect / encrypt the code.

2. next concern is Macro security is by default HIGH , I cann't give up !!!!
pls help me find out the way..... is there any option that wherever the file
will be openned the Macro security will be changed to LOW ??

3. is there anyother way apart from Macro to do the same?

I need to complete the job

waiting.......

"Som" wrote:

OK ,

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.


"Bob I" wrote:

Nope, i don't share mail IDs. Also if you aren't allowed to run macros,
how do you expect macros to perform the desired effect?

Som wrote:

bob,

pls give me your mail id , my mail id is


pls see my new replies in this post.... it is running now , but it is giving
new problem

"Bob I" wrote:


Change the less than to greater than

If DateDiff("d", "10/Mar/2009", Date) 1 Then
--------------------------------------^

Som wrote:


My code----

=====================
Private Sub Workbook_Open()
MsgBox "Ok"
MsgBox DateDiff("d", "10/Mar/2009", Date)
If DateDiff("d", "10/Mar/2009", Date) < 1 Then
MsgBox "Ok1"
Application.ActiveWorkbook.Close
End If
MsgBox "Ok2"
End Sub
======================================

result of manual run of MS VB macro

msg box ok coming
msg box 2 coming
msg box ok1 not coming
msg box ok2 coming

how to run the macro automatically

"Som" wrote:



No boss, it is not working.....!!!!!!!!

how this macro will run ? auto? i think there is some problem

my mail id is


can u pls send me atest mail , so that i can send u the file with i have
done...



"Jacob Skaria" wrote:



Sorry, this should be....
If DateDiff("d","12/Mar/2009",Date) < 1

JacobSkaria

"Som" wrote:



No ,

it is not working...!!!!!!

I've given 11 march 2009

but it is openning......!!!!!!

one thing , I want to inform that here in my office by default MS Excel
Macro Security is 'VERY HIGH'.....

is this creating the problem?

*** how to give different password in MS Excel VB editor?

"Jacob Skaria" wrote:



Hi Som

You need write a piece of code. From the menu go to
Tools--Macro--Visual Basic Editor--
Select Worksheet and copy the below code

Private Sub Workbook_Open()
If DateDiff("d","12/Mar/2009",Date) < -1 Then
Application.ActiveWorkbook.Close
End If
End Sub

This will only allow the workbook to be used upto Mar 12th. Password protect
the Visual Basic Editor before you distribute.

Jacob Skaria
(If this post is helpful please click Yes)