04-12-2022, 03:17 AM
If you need to preserve the status of the frame, just don't destroy it. You can hide it using the visible property as you do with any control. When you need it again, just make it visible again.
Have in mind that RenderInvisibleControls of TIWForm may also affect the way you make them visible/invisible. If RenderInvisibleControls is disabled you will need a full post back (not an Async event) to make it visible again (I'm supposing that you have 2 frames in the same form).
You can also just have one on top of the other if they have the same size.
Have in mind that RenderInvisibleControls of TIWForm may also affect the way you make them visible/invisible. If RenderInvisibleControls is disabled you will need a full post back (not an Async event) to make it visible again (I'm supposing that you have 2 frames in the same form).
You can also just have one on top of the other if they have the same size.

