hi,
Does anyone knows on how to update records from 1 text file into 2 different sql database.
Name of the sql Table is Payment2SQL_Success_P() & Payment2SQL_Success_E()
is the code below is on the right track.
Select Case "AGENCIES"
Case AGENCY_AV Or AGENCY_SR Or AGENCY_IP Or AGENCY_TM Or AGENCY_MS
PBillPayment = True
EBillPayment = False
Case AGENCY_AS Or AGENCY_CM
PBillPayment = False
EBillPayment = True
End Select
If blnPaymentDone = True Then
If PBillPayment = True Then
Payment2SQL_Success_P()
ElseIf EBillPayment = True Then
Payment2SQL_Success_E()
End If
End If