G
Guest
I'm stumped !
I inherited this Access app and it's giving me an error.
This line " Form_frmQualityData.refreshProviderLst " obviously updates a
list but there is nothing anywhere called "ProviderLst"
Could anyone please help me understand what the refresh should be updating??
//////////////
q = "INSERT INTO TBLQUALITYPROVIDER (ICNNO, PROVNO, CREATETIME, COMPLAINT)
VALUES ('" & OpenArgs _
& "','" & strprovno & "', #" & Now() & "#, " & Me.chkComplaint & " );"
Set db = CurrentDb
db.Execute q, dbFailOnError
db.Close
DoEvents
Form_frmQualityData.refreshProviderLst
DoCmd.Close
Exit Sub
I inherited this Access app and it's giving me an error.
This line " Form_frmQualityData.refreshProviderLst " obviously updates a
list but there is nothing anywhere called "ProviderLst"
Could anyone please help me understand what the refresh should be updating??
//////////////
q = "INSERT INTO TBLQUALITYPROVIDER (ICNNO, PROVNO, CREATETIME, COMPLAINT)
VALUES ('" & OpenArgs _
& "','" & strprovno & "', #" & Now() & "#, " & Me.chkComplaint & " );"
Set db = CurrentDb
db.Execute q, dbFailOnError
db.Close
DoEvents
Form_frmQualityData.refreshProviderLst
DoCmd.Close
Exit Sub