ListView Control has Wrong Location

T

Trevor

I have a ListView control placed on a MSForms.Page control. At run-
time, the ListView object appears in the upper-left corner of the Page
object and not where I positioned it during design-time. The ListView
object appears as expected when I change the focus to another Page
object and then return to the parent Page object. How can I get the
ListView control to appear as designed at all times?
 
H

huynd.acc

Within the Click event of the MultiPage control, Make all the ListViews invisible and then visible again.
 
Top