The Form Manager implements the navigation of forms. You can add or modify the navigation by using a connection action.
Sybase.UnwiredPlatform.Windows.Action.Action
connectionAction1_From_FormCustomer_To_FormCustomerDetails =
Sybase.UnwiredPlatform.Windows.Action.ActionFactory
.CreateScreenAction(typeof(FormCustomerDetails),
(this.Form as FormBase),dataObject);
connectionAction1_From_FormCustomer_To_FormCustomerDetails
.Execute();
You can also call the Form Manager directly.
FormBase.FormsManager.ShowForm(…)