J
Jasoni
I might have too complicated idea to secure my workbooks but.......
I used to have security macro in each of my workbooks which tested
harddrives serialnumber.
Chancing and adding a computer makes it too hard work to edit all of those
workbooks to add new serials.
So I made an external sec.xls file which do the trick.
1. When a calculation workbook (auto-open macro) is opened it opens sec.xls
in the very same folder where it was started and adds a workbooks name
inside sec.xls to A6 as string, which calls it. So it can come back to
original workbook.
2. According to sec.xls (auto-open macro) calculation it should compare it
calculation workbook is allowed to go on opening.
3. If allowed sec.xls should place "OK" in calculation workbooks H1,
otherwise "NO"
Everything went just fine but I can't activate my workbook which calls
sec.xls.
So OK is placed in sec.xls instead of the original workbook.
Is it ok using that calling workbook as a string in A6?
Any ideas how to solve this or even make it any simplier.
I am not familiar with the public variables if it's any solution.
frombook = Sheets("id").Range("A6").Value
Workbooks(frombook).Activate
This is the line it accepts but won't work as it should.
I used to have security macro in each of my workbooks which tested
harddrives serialnumber.
Chancing and adding a computer makes it too hard work to edit all of those
workbooks to add new serials.
So I made an external sec.xls file which do the trick.
1. When a calculation workbook (auto-open macro) is opened it opens sec.xls
in the very same folder where it was started and adds a workbooks name
inside sec.xls to A6 as string, which calls it. So it can come back to
original workbook.
2. According to sec.xls (auto-open macro) calculation it should compare it
calculation workbook is allowed to go on opening.
3. If allowed sec.xls should place "OK" in calculation workbooks H1,
otherwise "NO"
Everything went just fine but I can't activate my workbook which calls
sec.xls.
So OK is placed in sec.xls instead of the original workbook.
Is it ok using that calling workbook as a string in A6?
Any ideas how to solve this or even make it any simplier.
I am not familiar with the public variables if it's any solution.
frombook = Sheets("id").Range("A6").Value
Workbooks(frombook).Activate
This is the line it accepts but won't work as it should.