Article Details
Id:11247
Product:finPOWER Connect
Type:NEW
Version:2.00.00
Opened:21/06/2013
Closed:25/07/2013
Released:04/10/2013
Job: J011743

Page Sets; Text Box can now show a Range Lookup to display a Standard Range

Text Box type Page Objects can now call (via Script) a method to display a Range Lookup form, e.g., to select a range of Account Types.

The following code sample demonstrates using this new method:

Public Sub txtAccountTypes_ButtonClick(sender As Object, e As finPageObjectButtonClickEventArgs) Handles txtAccountTypes.ButtonClick

  Select Case e.ButtonType
    Case isefinPageObjectButtonType.Find
      ' Show Range Lookup of Account Types
      txtAccountTypes.FormShowRangeLookupFromStandardRange(isefinStandardRange.AccountTypes)
  End Select

End Sub