Creating af Wizard at Windows Mobile 6
-
Hi Everyone I am trying to create a wizard program on a Windows Mobile 6 Classic. When the program starts, it will get some settings from a webservice on the internet. Theese settings contains information about each step in the wizard. It will not always be the same number of steps, that will be initialized in the program. I have created the wizard as a tabcontrol, so when the program is initializing the actuel number of wizard will be added to the control. On each page I have a "next" button, which contain the following code: if (tabIdx == -1) tabIdx = 0; tabIdx += 1; TabPage tp = tabSteps.TabPages[tabIdx]; tp.BringToFront(); There is only one problem with this solution. I Cant remove the tabs at the bottom of the program, so the user can navigate to every step he/she want. the tabPage.Enter event does not exist in the Compact Framework, so i cant change the tabIdx when entering a new tabpage. How do i solve this?