In form How can I enable/Disable Tabpages based on conditions?

In form How can I enable/Disable Tabpages based on conditions?

hii,

It is so easy, First make auto declaration property of Tab Page to yes

After that Copy the name of Tab Page and use it as…

TabPageName.enabled(true); /// It is form Enabling

or

TabPageName.enabled(false); /// It is for disabling

where TabPageName is the name of TabPage

Thanks & Regards

Varun Garg