how make my DB to not copy it (1 Viewer)

POM

Registered User.
Local time
Today, 19:24
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
 

gemma-the-husky

Super Moderator
Staff member
Local time
Today, 17:24
Joined
Sep 12, 2006
Messages
15,709
you need some sort of licencing mechanism

not easy to do.
 

Galaxiom

Super Moderator
Staff member
Local time
Tomorrow, 02:24
Joined
Jan 20, 2009
Messages
12,856
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

Top Bottom