Hi,
When I try to delete all Tabs with FF_TabControl_RemoveAllTabs the Content of the TabControlChild is still active.
The same thing happens when using FF_TabControl_RemoveTab.
Any Ideas how to resolve this?
Thanks,
BA
FF_TabControl_RemoveAllTabs just removes the tabs of the tab control. Anything tied to that tab (ie. the child forms) need to be manually closed by your code. So, when you call FF_TabControl_RemoveAllTabs then also use FF_CloseForm for the child form associated with each tab.
Hope that helps.
Hi Paul,
It helped.
Thanks,
BA