Ck a new version

  • Thread starter Thread starter Gil Stone
  • Start date Start date
G

Gil Stone

Hi,
I'd like Access to point to a folder when a file version has changed so I
came up with this:

If Nz(DLookup("[Version]", "[fileversion]"), "") = "20061211" Then
Me.Visible = False

Else
strMsg = "There's a new version. Would you like to dnload it?"
If MsgBox(strMsg, vbExclamation + vbOKCancel, "Ck Version") = vbOK
Then

....XXXX

DoCmd.Quit
End If

When OK is chosen on the msg box, I'd like the folder
\\server\access\newfile.ade to open so that the user can dnload the new
version while access is shuting down (DoCmd.Quit).
HOWTO?
TIA
Gil
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top