Refreshing Treeview Data

P

Paul

Hi folks
I am currently trying to refresh the underlying data for
an activeX treeview, the only way I seem to be able to do
this is close and open the form, any pointers would be
welcome.

TIA
Paul
 
L

Lance McGonigal

Paul...Can you not refresh the entire form? Like this:

dim myform as form
set myform = forms!myformname
myform.requery

Doesn't a form refresh refresh everything on the page? Just a thought.
 
Top