LittleNick
Technical User
Hi Everyone,
I have a Main Customer form with a button when I click it, it will open another form, with code something like this when button is clicked:
stDocName = "frmCustomerBillingInfo"
stLinkCriteria = "[CustomerID] = " & Me![ID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
It works well most of the time, but once in while, when a user click the button, the CustomerBilling form would alway display the same Customer billing info. To fix the problem I have to go to the form's design view and clear the Server Filter property (somehow, the criteria has been added into the server filter property). My question is how can I make the form so the server filter property would always be blank and nothing inserted by the system.
Thanks for your helps.
I have a Main Customer form with a button when I click it, it will open another form, with code something like this when button is clicked:
stDocName = "frmCustomerBillingInfo"
stLinkCriteria = "[CustomerID] = " & Me![ID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
It works well most of the time, but once in while, when a user click the button, the CustomerBilling form would alway display the same Customer billing info. To fix the problem I have to go to the form's design view and clear the Server Filter property (somehow, the criteria has been added into the server filter property). My question is how can I make the form so the server filter property would always be blank and nothing inserted by the system.
Thanks for your helps.