G
Guest
hi all
I got a form1, with a subform1, and a command1 button. (Highly simplified
The subform1 has a drop-down list box control
the command1 button open another form, form2, for filling out some detail (this is then placed in a table, table1
the drop-down list button show part of the info as filled out in form2 (from table1
However, after I filled out form2 and closed, the drop-down list box of form1 doesn't get update automatically with the new info
I tried searching the web, from what I understand, the requry should work
Private Sub Form_Activate(
On Error GoTo Form_Activate_Er
DoCmd.Maximiz
Me.tblLink.Requery 'tblLink is the name of the subfor
Form_Activate_Exit
Exit Su
Form_Activate_Err
MsgBox Error(
Resume Form_Activate_Exi
End Su
But this doesn't work, why?
I got a form1, with a subform1, and a command1 button. (Highly simplified
The subform1 has a drop-down list box control
the command1 button open another form, form2, for filling out some detail (this is then placed in a table, table1
the drop-down list button show part of the info as filled out in form2 (from table1
However, after I filled out form2 and closed, the drop-down list box of form1 doesn't get update automatically with the new info
I tried searching the web, from what I understand, the requry should work
Private Sub Form_Activate(
On Error GoTo Form_Activate_Er
DoCmd.Maximiz
Me.tblLink.Requery 'tblLink is the name of the subfor
Form_Activate_Exit
Exit Su
Form_Activate_Err
MsgBox Error(
Resume Form_Activate_Exi
End Su
But this doesn't work, why?