Hello
What i would Like to know is i have a memo on my main form that i would like that when it is filled in that it will be automatically e-mailed(outlook) to a known e-mail address. if this is possible that would be great, or even a version of this would be great, what i have now is this:
Private Sub Maintenance_Click()
If MsgBox("Email Todd Harvey About the Problem With the Truck", vbOKCancel) = vbOK Then
DoCmd.RunMacro ("macOutlook"
Else
DoCmd.OpenForm ("frmTruckSheet"
, acNormal
End If
End Sub
the macro is a RunApp to Outlook. if this is the best that i can do then thats great. Thanks for the help
Iamuseless
What i would Like to know is i have a memo on my main form that i would like that when it is filled in that it will be automatically e-mailed(outlook) to a known e-mail address. if this is possible that would be great, or even a version of this would be great, what i have now is this:
Private Sub Maintenance_Click()
If MsgBox("Email Todd Harvey About the Problem With the Truck", vbOKCancel) = vbOK Then
DoCmd.RunMacro ("macOutlook"

Else
DoCmd.OpenForm ("frmTruckSheet"

End If
End Sub
the macro is a RunApp to Outlook. if this is the best that i can do then thats great. Thanks for the help
Iamuseless