Hi all,
This is a GUI question. I have a link label on a page of a tab control. Upon clicking on that link label, I'd like to take the user to the next page of the tab control. I could not find any useful examples on how to implement this inside a smart device application. Does any one have any suggestions
Cheers

LinkLabel question
Alvin Kuiper
Handle The clicked event of LinkLable and put the following code in there:
if(tabControl.SelectedIndex < tabControl.TabPages.Count -1)
{
tabControl.SelectedIndex += 1;
}
I hope this will work! Cheers ;-)