Sorry. That was just pseudo-code. And, I am creating new instances of my class with the "private address as clsAddress" part, yes? The problem, as I'm seeing it now, is that I have nothing to hold a reference to the entire object within the form. I have a reference to the PANE being returned from that class (within the listview), though, which isn't letting me see the variables contained in the class itself.
Everything works (many subs, events, variables and even other classes referenced within that class) within the class itself, and the several instances of that class in the listview, but it's when I'm trying to get to anything in that class other than the pane and views being loaded into it by the loadlayout() is where I'm having a problem. Such as, from the form, trying to iterate over each Address object (clsAddress class) in the listview to see if a public variable has changed. It's not just initializing one instance of the class several times over.
I think your suggestion gave me the hint I was looking for, though. I have to keep the entire class instance somewhere in order to reference it later (ie dim address(10) as clsAddress) instead of just relying on the PANE of the class getting me there.