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
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