here is my latest..
Trying to append a record to tblLoanAppComm.
3 fields
error message is to "Too few parameters. Expected 3.
Trying to append a record to tblLoanAppComm.
3 fields
PHP:
strLoanMessage = "Cancel Loan Due to " 'Start tblLoanComm Message
strLoanMessage = strLoanMessage & strReason 'Include Reason
strAppMessage = "Cancel Application Due to " 'Start tblLoanAppComm Message
strAppMessage = strAppMessage & strReason 'Include Reason
'SQL to Append Message to tblLoanAppComm
strSQL = "INSERT INTO tblLoanAppComm ( LoanAppID, CommNotes, Operator )"
strSQL = strSQL & " SELECT AID, strAppMessage, strUserRole"
CurrentDb.Execute strSQL, dbFailOnError 'Run SQL
error message is to "Too few parameters. Expected 3.