FancyPrairie
Programmer
I've created a DAP with 3 sections. Expanding a record in the first section will show the records in the 2nd section. Expanding the records in the 2nd section will display the records in the 3 section. Something like this:
+Section 1
+Section 2
Section 3
My problem is, I don't know when section 1 or section 2 has finished expanding. For example, when I execute this line of code: If (Not Section1.IsExpanded) then Section1.Expand, I need to know when it has finished expanding because I need to then search thru its childsections (i.e. find a specific record in Section2).
In other words, I think I need something like a DoEvents.
Is there an event that lets me know when the section has completed expanding?
+Section 1
+Section 2
Section 3
My problem is, I don't know when section 1 or section 2 has finished expanding. For example, when I execute this line of code: If (Not Section1.IsExpanded) then Section1.Expand, I need to know when it has finished expanding because I need to then search thru its childsections (i.e. find a specific record in Section2).
In other words, I think I need something like a DoEvents.
Is there an event that lets me know when the section has completed expanding?