how make my DB to not copy it

POM

Registered User.
Local time
Today, 08:41
Joined
Dec 27, 2013
Messages
39
Hi All
I have an access file, how I can make it to not working if I coped in same PC or another PC,Thanks for help
 
you need some sort of licencing mechanism

not easy to do.
 
When the db opens get the name of the computer and the full name and path of the file. Compare these with values stored in the VBA and exit if they don't match.

Computer name can be returned with:
CreateObject("wscript.network").ComputerName

The full path including the file name with:
CurrentProject.FullName
 

Users who are viewing this thread

Back
Top Bottom