G
Guest
Does anyone know what this error is? "Run Time Error '438' Object Does not
support this property or method." My Search screen functionality works on my
laptop (running on Access 2003) but when I load it onto another PC (Access
2000), I get the above error. Is this a PC problem, version or some other
problem?
Thank you!!!
SQLstmt = SQLstmt & " order by a.contract_no, a.doc_type"
findFlag = "N"
rst_Contractrec.Open SQLstmt, CurrentProject.Connection, adOpenDynamic,
adLockOptimistic
Do Until rst_Contractrec.EOF
If Not rst_Contractrec.EOF Then
*****the error occurs in the line below*****
Me!main_list_box.AddItem (rst_Contractrec!Contract_no & ";" &
rst_Contractrec!Doc_type & ";" & rst_Contractrec!Customer_no & ";" & "'" &
rst_Contractrec!Customer_name & "'" & ";" & rst_Contractrec!Acceptance_date &
";" & rst_Contractrec!Contract_end_date & ";" & rst_Contractrec!Volume_flag)
*****the error is in the line above*****
findFlag = "Y"
End If
rst_Contractrec.MoveNext
Loop
support this property or method." My Search screen functionality works on my
laptop (running on Access 2003) but when I load it onto another PC (Access
2000), I get the above error. Is this a PC problem, version or some other
problem?
Thank you!!!
SQLstmt = SQLstmt & " order by a.contract_no, a.doc_type"
findFlag = "N"
rst_Contractrec.Open SQLstmt, CurrentProject.Connection, adOpenDynamic,
adLockOptimistic
Do Until rst_Contractrec.EOF
If Not rst_Contractrec.EOF Then
*****the error occurs in the line below*****
Me!main_list_box.AddItem (rst_Contractrec!Contract_no & ";" &
rst_Contractrec!Doc_type & ";" & rst_Contractrec!Customer_no & ";" & "'" &
rst_Contractrec!Customer_name & "'" & ";" & rst_Contractrec!Acceptance_date &
";" & rst_Contractrec!Contract_end_date & ";" & rst_Contractrec!Volume_flag)
*****the error is in the line above*****
findFlag = "Y"
End If
rst_Contractrec.MoveNext
Loop