F
Faraz Ahmed Qureshi
If a new entry is inserted in a form (namely USERS) 's combobox (Which is
based upon another table) I have the other table based form be opened,
however, after inserting the new entry, I want the USER form's combobox
(Branch_Name) be updated and that's why I have inserted the following code so
as to have the original form be closed and reopened for the combobox be
refreshed.
But the form USER upon being reopened has all the controls presented only as
a picture and none of the buttons be working???
Private Sub FORM_CLOSE()
If (SysCmd(acSysCmdGetObjectState, acForm, "User") And acObjStateOpen)
<> False Then
SendKeys "{ESC}", True
DoCmd.Close acForm, "User"
DoCmd.OpenForm "User"
End If
End Sub
based upon another table) I have the other table based form be opened,
however, after inserting the new entry, I want the USER form's combobox
(Branch_Name) be updated and that's why I have inserted the following code so
as to have the original form be closed and reopened for the combobox be
refreshed.
But the form USER upon being reopened has all the controls presented only as
a picture and none of the buttons be working???
Private Sub FORM_CLOSE()
If (SysCmd(acSysCmdGetObjectState, acForm, "User") And acObjStateOpen)
<> False Then
SendKeys "{ESC}", True
DoCmd.Close acForm, "User"
DoCmd.OpenForm "User"
End If
End Sub