Article Details
Id:13432
Product:finPOWER Connect
Type:NEW
Version:2.03.04
Opened:20/11/2015
Closed:20/11/2015
Released:03/02/2016
Job: J016592

Business Layer User Interface; MsgBoxEx method added

New method MsgBoxEx() added to ISUserInterface.

This method allows you to specify a Help topic which adds a Help button to the dialog.

In order to use the Help button you must supply the helpFilePath parameter, its usage is:

  • A Help Topic, e.g. "Client.General"
  • URL, e.g. "http://www.intersoft.co.nz/Developer/Default.aspx?id=Developer.PageSets".
  • Knowledgebase article, e.g. "KB:99999".
  • Technical Support Bulletin, e.g. "TSB:TSB1030".
  • Trouble Shooting Guide, e.g. "TSG:TSG2000".

The following code samples shows how to use the new method:

gUI.MsgBoxEx("A Help Topic", , , , "Client.General")
gUI.MsgBoxEx("A URL", , , , "http://www.intersoft.co.nz/Developer/Default.aspx?id=Developer.PageSets")
gUI.MsgBoxEx("A Knowledgebase article", , , , "KB:99999")
gUI.MsgBoxEx("A Technical Support Bulletin", , , , "TSB:TSB1030")
gUI.MsgBoxEx("A Trouble Shooting Guide", , , , "TSG:TSG2000")