PlanetSquires Forums

Support Forums => Other Software and Code => Topic started by: Shawn Anderson on November 09, 2009, 08:40:05 PM

Title: programmatically change tab
Post by: Shawn Anderson on November 09, 2009, 08:40:05 PM
I have a project with multiple tabs.
How can I programmatically move from one tabbed form to another?
thanks
Title: Re: programmatically change tab
Post by: Nathan Durland on November 09, 2009, 08:44:42 PM
I use this:

  FF_TABCONTROL_SETTABFOCUS (HWND_MAINFORM_MAINTAB, TabNumber)
  FF_TABCONTROL_SETSELECTEDTAB (HWND_MAINFORM_MAINTAB, Tabnumber)
Title: Re: programmatically change tab
Post by: Shawn Anderson on November 11, 2009, 01:35:56 PM
perfect! thanks