BillieBurgess
Technical User
Hi,
I have a problem; I have a form that explains how to import SerialNumber Scan sheets, which are scanned in under a PO Number into access. On this form, I have an On Click event that says:
My Boss clicks the label the query opens he imports a PO not listed on the query, clicks the label and comes and gets me because the query does not show the PO he just imported and he thinks the PO did not import. I have told him repeatedly that he needs to close the query and reopen it, but he still does the above. Is there a way I can write a code that says?
I have look in the help file in access and scrolled through some previous questions but have not seen an answer.
Any help would be appreciated.
Billie
I have a problem; I have a form that explains how to import SerialNumber Scan sheets, which are scanned in under a PO Number into access. On this form, I have an On Click event that says:
Code:
Private Sub Label13_Click()
DoCmd.OpenQuery "QueryListPurchaseOrdersStore10", acViewNormal, acReadOnly
DoCmd.OpenQuery "QueryListPurchaseOrdersStore68", acViewNormal, acReadOnly
End Sub
Code:
If "queryName" is open then
docmd.requery "queryName"
Any help would be appreciated.
Billie