gerard1979
MIS
Usage: Access2000
Construction: Form (frmContact) with Cbo (cboWith)
The cbo is bounded by a function, the function search for the forms ID:
Function HaalCPID()
On Error GoTo errHandler
HaalCPID = Nz(Forms!contactpersoon!CP_id, 0)
'print without errhandler
End Function
Problem: I add an RefID in the CboWith(FormID, RefID).
The cbo is updated, so the information is shown. When I open another Contact without closing the current one (so I update the screen. The cbo isn't update. Which event take care about this switch and how can I force an update of the screen?
Construction: Form (frmContact) with Cbo (cboWith)
The cbo is bounded by a function, the function search for the forms ID:
Function HaalCPID()
On Error GoTo errHandler
HaalCPID = Nz(Forms!contactpersoon!CP_id, 0)
'print without errhandler
End Function
Problem: I add an RefID in the CboWith(FormID, RefID).
The cbo is updated, so the information is shown. When I open another Contact without closing the current one (so I update the screen. The cbo isn't update. Which event take care about this switch and how can I force an update of the screen?