Link child Link Master problem (1 Viewer)

D

daveyboy

Guest
I recently switched from Access 2.0 to Access 2000. My entire database runs fine except for a certain form/subform. I have a combo box at the top of the form where I can select a serial number for a given unit. Once selected, the subform produces a grid of results of utilizations for the unit, arranged in chronological order. Post install, I select a serial number, hit Enter, and the grid does not change. Any suggestions? Is this a Link Child/Link Master field problem? Thank you in advance.
 

Travis

Registered User.
Local time
Yesterday, 17:38
Joined
Dec 17, 1999
Messages
1,332
Try doing a Requery of the Sub Form after the change in the Combo box.

I.e.

Private Sub ComboBox_AfterUpdate()
Me.SubForm.Requery
End Sub
 

Users who are viewing this thread

Top Bottom