View Single Post
  #1  
Old March 18th, 2010, 06:53 AM posted to microsoft.public.access
Faraz Ahmed Qureshi[_2_]
external usenet poster
 
Posts: 40
Default Form not opening correctly

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

--
Thanx & Best Regards,

Faraz!