We've added a new method to the Lianja system object:
Lianja.showHelp(title as character, filename as character [[, keyword as character[, showbuttons as logical]])
e.g.
Code:
Lianja.showHelp("MyApp Help", "myhelptable")
This will be tied into a new ? icon in the section header to provide context sensitive help about the section type in development mode and context sensitive app help at runtime mode.
The filename can be an .rsp file, an http web request or the name of a table in the app with the structure of:
category char(30)
topic char(30)
notes memo
The table should be indexed on lower(topic) and also lower(category+topic).
There is a new menuitem in the help menu "Tips and Tricks..." which displays the dialog against system!syslianja which will contain the tips and tricks.
I will make a tool available that provides the ability to add/edit these tips and tricks using the Lianja HTML editing component.
Bookmarks