This is a simple solution I came up with for distributing a current employee phone list. On the form's Save button I attached the following code and created shortcuts on the users' desktops which point to the snapshot. Whenever the personnel clerk updates the phone list and saves it, an updated snapshot is available for viewing.
Private Sub Command113_Click()
On Error GoTo Err_command113_Click
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70
DoCmd.OutputTo acOutputReport, "employeelist", acFormatSNP, "\\MyServer\MySharedFolder\Employee Phone List.snp"
DoCmd.Quit
Exit_command113_Click:
Exit Sub
Err_command113_Click:
MsgBox err.Description
Resume Exit_command113_Click
End Sub