Hi, I have a server client program, where in the client I'm the wizard to get user information.
I let the user enter in page1 the userID, when they click next I check if their userID is correct, if it's not correct I don't want the page to move to the next page.
how would I do that.
private void WP_GetUserID_BeforeMoveNext(object sender, EventArgs e)
{
progressBarPickCardHolder.Visible = true;
//code to check if user is valid
if (UserID != true)
//cancel move next
}
Another question is:
I use infragistics for my applications, now I would want to style the wizard in the same way as the infragistics.
Is there a way to do it?
RNBY