Results 1 to 3 of 3
  1. #1
    jmyersnc is offline Novice
    Windows 7 Access 2010 (version 14.0)
    Join Date
    Feb 2010
    Posts
    1

    Smile Keep From Copying Database

    I am wanting to develop an Access database, prob in 2007. When I develop it, I want to be able to sell it. I want a way to have the customer to register it and not be able to give a blank copy to his/her buddies. Is there a way to do this?

  2. #2
    llkhoutx is offline Competent Performer
    Windows Vista Access 2007
    Join Date
    Jan 2010
    Location
    Houston, Texas USA
    Posts
    373
    Have registration be limited to 1 PC computer.Surreptitiously capture the unique computer name when registering the program and save same in a hidden table or in the registry. You could save the "computer name" in some oscure hidden folder and file in folder Program Files.

    dim txtComputerName as string
    txtcomputerName = Environ("Computername")

    On startup verify the user's computer name was what was registered by comparing with the hidden file or registry.

    Charge a fee for resetting the registration (resetting the "compouter name" to that of a new computer.

    A snoopy user may be able to find what you did, but it wouldn't be easy.

    Alternatively encrypt a dongle with the computer name.


  3. #3
    llkhoutx is offline Competent Performer
    Windows Vista Access 2007
    Join Date
    Jan 2010
    Location
    Houston, Texas USA
    Posts
    373
    I gave you the wrong argument for the Environ function. The user can change the computer name.

    try
    Code:
    Dim fso As New FileSystemObject
        GetSerialNumber 
    =  fso.GetDrive(drive).SerialNumber 
    I apologize for the inconvenience.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Replies: 5
    Last Post: 03-23-2011, 10:39 AM
  2. Copying only part of data from a text field
    By davedejonge in forum Queries
    Replies: 1
    Last Post: 02-03-2010, 05:18 PM
  3. Copying selected fields to a new record
    By Lyle Bitikofer in forum Forms
    Replies: 0
    Last Post: 12-13-2009, 04:01 PM
  4. Copying into empty fields until...
    By cochi30 in forum Programming
    Replies: 8
    Last Post: 06-07-2009, 07:38 AM
  5. copying data from subform to mainform
    By wasim_sono in forum Forms
    Replies: 0
    Last Post: 03-10-2006, 04:35 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums