Article Details
Id:14452
Product:finPOWER Connect
Type:NEW
Version:3.00.05
Opened:07/03/2017
Closed:24/03/2017
Released:10/04/2017
Job: J018674

Page Sets; Can now display the Add Account Payment Arrangement wizard

Pages Sets can now display the Add Account Payment Arrangement wizard.

NOTE: When right-clicking on the Page Preview, the list of Page Set events has been changed slightly with wizard-specific and tabbed-specific events appearing in a separate section at the bottom of the menu.

The following code shows the Add Account Payment Arrangement wizard. It assumes the Script has an mAccount object loaded.

Public Sub cmdTest_Click(sender As Object,
                         e As finPageObjectClickEventArgs) Handles cmdTest.Click

  If Not psh.FormShowAccountPaymentArrangementAdd(mAccount) Then
    mUI.ErrorMessageShow()
  End If

End Sub

Public Sub PageSet_AccountPaymentArrangementAddFormClosed(sender As Object,
                                                          e As finPageSetHandlerAccountPaymentArrangementAddFormClosedEventArgs) Handles Me.AccountPaymentArrangementAddFormClosed

  mUI.MsgBox(e.AccountId & ": " & e.Cancelled & ": " & e.AccountPaymentArrangementPK)

End Sub