txgeekgirl
Registered User.
- Local time
- Today, 11:45
- Joined
- Jul 31, 2008
- Messages
- 187
I have checked the boards - but nothing quite like mine and I am stuck. Any help is much appreciated! 
This is happening on a Function call that accepts two arguments.
Call from the VBA Form to Function - (it's the SendEmail)
SendEmail Function in the Global Module:
This is happening on a Function call that accepts two arguments.
Call from the VBA Form to Function - (it's the SendEmail)
Code:
If MsgBox("Is this correct? " & vbNewLine & MyRequest, vbYesNo, "CARE Request") = vbYes Then
SubmitEmail (MyRequest & "," & CStr(myRec))
MsgBox "Your request has been sent to Information Systems for processing."
clearform
Else
OpenForCare
End If
SendEmail Function in the Global Module:
Code:
Public Function SubmitEmail(msg, rec) As String