Article Details
Id:12037
Product:finPOWER Connect
Type:NEW
Version:2.01.01
Opened:03/07/2014
Closed:03/07/2014
Released:31/07/2014
Job: J013578

Page Sets; Page Object Custom buttons now support a shortcut key

Custom-type Buttons appearing after a Page Object, e.g., after a DBComboBox, now support a shortcut key when added from code.

The following sample adds 2 buttons with shortcut keys:

With cboLoadClient.Buttons
  .Add(isefinPageObjectButtonType.Custom, "LoadClient", "Browse_Open", "Load Client", True, True, isefinPageSetShortcutKey.Enter)
  .Add(isefinPageObjectButtonType.Custom, "Search", "Search", "Search", True, True, isefinPageSetShortcutKey.F6 Or isefinPageSetShortcutKey.Control)
End With

NOTE: The "Search" button is activated when Ctrl+F6 is pressed using one of the special modifier shortcuts (Alt, Control and Shift).

The list of available shortcut keys is currently limited to the function keys and the Enter key.