I have a continuous form with a combobox with the control source of ProductID.
I have the following vba code:
Private Sub ProductID_AfterUpdate()
if (productID=1 or productID=2) then
docmd.openform "frminfo"
end if
End Sub
I want that popup window ("frminfo") to open ONLY the first time the condition is true. How should I modify this?