[Prev] [Next] [Top] [Bottom] [Contents] (95 out of 193)

SaPopulateTableMsgBox

Populates an HTML stream with data without the use of a template.

Synopsis

#include "SaRnHtml.h"

void SaPopulateTableMsgBox(Widget list, XtPointer client_data, SaCallbackStruct *cbs);

Arguments

list
Not used.
client_data
String used for the title of the returned HTML stream.
cbs
SaCallbackStruct callback structure containing the data.

Return Values

None.

Description

Populates the HTML stream with data without the use of a template. The client_data argument is used as the title of the returned HTML stream. This population routine uses the HTML table element which is not supported by all client browsers.

Example

/*** the following ad-hoc example can be used without 
templates **/
SaCallbackStruct *cbs;
cbs = SaExecSQL("CEZANNE", "pubs2", SGESYBASE, "select * 
from authors");
SaPopulateTableMsgBox(NULL, NULL, cbs);
SaFreeCbs(cbs);
Note: This call is generated automatically by Sapphire/Web through use of the Column Detail Editor.

See Also


[Prev] [Next] [Top] [Bottom] [Contents] (95 out of 193)