Yes Apollo6<br>
Do you know how to create a button for your form?<br>
<br>
In design view turn on the "Toolbar"<br>
Make sure the Wizard button is deprssed it has a "Majic wand" with fairy dust dropping from it (at the top or left).<br>
click "Command button"<br>
draw it on your form.<br>
it will launch the wizard.<br>
In "categories" list click "Record Operations" in the "Actions" list pick "Save Record"<br>
finish prompts.<br>
Now right click on your new button and click properties<br>
click the "Event" tab in the properties box.<br>
You will see and "Event Procedure" in the "On click" event.<br>
Click it and look at the far right side of the box you will see a "3 dots" button.<br>
click the dots button.<br>
this is the code window (VBA).<br>
you can do whatever you want here.<br>
you will see your "Save" code in the middle.<br>
<br>
to send e-mail look at "docmd.sendobject"<br>
Type it in actually then double click on sendobject to highlight it and press F1 it will bring up help on that item.<br>
<br>
Second Question Answer<br>
Yes it will Keep "Re-save" the original record<br>
Now to add the date and time you have to have a new field<br>
Call it "RecordSaveTime"<br>
<br>
here is an example button<br>
-----------------------------------------<br>
Private Sub Command6_Click()<br>
On Error GoTo Err_Command6_Click<br>
Dim MessageText As String<br>
Me![RecordSaveTime] = Format(Now, "hh:nn:ss"

<br>
Me![RecordSaveDate] = Format(Now, "mm/dd/yy"

<br>
<br>
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70<br>
<br>
MessageText = MessageText & " UPS RED Order " & Chr$(10) '< -line feed<br>
MessageText = MessageText & "Process NOW..."<br>
<br>
DoCmd.SendObject acSendNoObject, , actext, "<A HREF="mailto

Poston@blah.com">DPoston@blah.com</A>", , , "HOT Order", MessageText, False<br>
<br>
Exit_Command6_Click:<br>
Exit Sub<br>
<br>
Err_Command6_Click:<br>
MsgBox Err.Description<br>
Resume Exit_Command6_Click<br>
<br>
End Sub<br>
<br>
-----------------------------------------------------------<br>
NOTE:<br>
just paste the following 7 lines in your sub commnad button code.<br>
Dim MessageText As String<br>
Me![RecordSaveTime] = Format(Now, "hh:nn:ss"

<br>
Me![RecordSaveDate] = Format(Now, "mm/dd/yy"

<br>
<br>
DoCmd.DoMenuItem acFormBar, acRecordsMenu, acSaveRecord, , acMenuVer70<br>
<br>
MessageText = MessageText & " UPS RED Order " & Chr$(10) '< -line feed<br>
MessageText = MessageText & "Process NOW..."<br>
<br>
DoCmd.SendObject acSendNoObject, , actext, "<A HREF="mailto

Poston@blah.com">DPoston@blah.com</A>", , , "HOT Order", MessageText, False<br>
-----------<br>
<br>