-
Reload listview data?
on a load form( with a listview) event, i am able to load data to the columns and when i click 'back' button i unload the form : ie
frmxxx.show
unload me
...
and when i try to show the form (with the listview) again i could not retrieve the data.....why?
-
Try using Me.Hide as apposed to Unload Me.
-
though it works fine...but when the db is updated it would not show the latest update:(
-
Yeah, I can't get my LV to reload either. Is there any method that will clear a listview so it can be reloaded again?
Thanks,
-Blake
-
ListView1.ListItems.Clear I believe.
Tip: set Visible = False while you are adding items to ListView, will speed up things a lot when you have a lot of items.
-
Thanks merri, that worked great....