Refreshing Another Form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a listbox in Form1 and in Form2, I have a button that is supposed to
refresh Form1 so that the listbox is repopulated with the latest data after
adding some data in Form2. How do I do that? I tried something like this but
it couldn't work:

Forms!Form1.Refresh

Thanks.
ck
 
CK said:
I have a listbox in Form1 and in Form2, I have a button that is
supposed to refresh Form1 so that the listbox is repopulated with the
latest data after adding some data in Form2. How do I do that? I
tried something like this but it couldn't work:

Forms!Form1.Refresh
The form updates the underlying table or query and you must refresh that.

Forms!Form1.yourlistbox,requiry.
 
Back
Top