I think I understand what is happening here. For whatever reason he is unable to distribute the front-end to users directly. The users want to click on a link instead. He instructs the user to follow the link, copy the front-end to their desktop and then open it but the users don't listen and instead open the front-end directly.
Question for the Xarkath: Would placing th front-end within a zip file named soemthing like "COPY ME TO YOUR DESKTOP FIRST" help? Seriously, this can be a simple way to avoid the problem.
From a coding perspective you can definately include a check.... something like:
Code:
Dim strCurrentPath As String
strCurrentPath = CurrentProject.Path
If strCurrentPath = "put path to check here" Then
MsgBox "Please follow the instructions that have" & vbCrLf & _
"been sent to you. You need to make a copy of this" & vbCrLf & _
"file and place it on your local computer before" & vbCrLf & _
"trying to open it.", vbCritical, "INSTRUCTIONS NOT FOLLOWED"
DoCmd.Quit
End If