|
Sybernet / Supplied Procedures Reference
Release 3.00 Mar 03, 2005 |
|
This application program allows you to create documentation or help text for your application program. What follows is the documentation for SP_HTML_HELPTEXT which has documented itself. If only it were this simple:
ROW_ID is the key name that you will use to retrieve text; for example, the ROW_ID of this page is called "Welcome."
TIMESTAMP represents the date and time that this row was inserted or updated. It allows nulls because the trigger that fires uses a NULL value to determine which row is being updated and hence deleted by your insert.
This is the infamous blob.
exec http..sp_html_menubar @PROCNAME = 'http.dbo.sp_html_helptext_show' , @SEARCH = 'Welcome' , @STATUS = 'Click here for information on how to use Help!' ) ;If you prefer to send your help text to a new window, this can be arranged as well:
exec http..sp_html_menubar @PROCNAME = 'http.dbo.sp_html_helptext_show' , @SEARCH = 'Welcome' , @STATUS = 'Click here for information on how to use Help!' , @TARGET = 'Instructions' , @WIDTH = '300' , @HEIGHT = '400' , @RESIZABLE = 'yes' , @SCROLLBARS = 'yes'