D
DawnTreader
when my form loads it runs code to determine the status of the product that the issue is about. in the load procedure i have declared the variable ProductStatus as a string. then i try to give it it's value. here is the code that does that:
ProductStatus = Nz((DLookup("PRunStatus", "qryProductStatusFinder", "ProductID = " & Me.ProductID)), "Running")
when running the form access gives me the message that:
runtime error '2447', there is an invalid use of the . (dot) or ! operator or invalid parentheses.
What? where? I dont understand what is wrong as this code worked a few days ago...
any and all help appreciated.
ProductStatus = Nz((DLookup("PRunStatus", "qryProductStatusFinder", "ProductID = " & Me.ProductID)), "Running")
when running the form access gives me the message that:
runtime error '2447', there is an invalid use of the . (dot) or ! operator or invalid parentheses.
What? where? I dont understand what is wrong as this code worked a few days ago...
any and all help appreciated.