Online Help - Region 3: [CORE HL7 API Dialogs] |
Available across all platforms (.Net and .Net Framework)
Static Method: FormResults.ShowRichTextReport(Form parentForm, string rtf, string title = "", string helpURL = "")
Returns: Nothing (Void)
Description: Shows a modal dialog window RichText report (screenshots below).
Static Method: FormResults.ShowRichTextReportWithPrintOption(<same parameters>)
Returns: DialogResult
Note: The CORE HL7 API provides NO printing services, you have to provide your own.
Description: Shows a modal dialog window RichText report (screenshots below) BUT will also include Print button on the form's toolbar. If this button is clicked the return result will be DialogResult.Retry indicating that the user wants to print the RichText report / document you provided in the rtf parameter.
See Also: Creating Reports with the RTFBuilder Class
Static Method: FormResults.ShowTextReport(Form parentForm, string text, string title = "", string helpURL = "")
Returns: Nothing (Void)
Description: Shows a modal dialog window unformatted Text report.
Static Method: FormResults.ShowTextReportWithPrintOption(<same parameters>)
Returns: DialogResult
Note: The CORE HL7 API provides NO printing services, you have to provide your own.
Description: Shows a modal dialog window with an unformatted Text report BUT will also include Print button on the form's toolbar. If this button is clicked the return result will be DialogResult.Retry indicating that the user wants to print the Text report / document you provided in the text parameter.
Static Method: FormResults.ShowConfirmationReport
(Form parentForm,
string reportValue,
string reportTitle = "",
bool reportValueIsRtf = true,
string confirmationPrompt = "I have read and agree with the terms above",
string helpURL = "")
Returns: Boolean (bool)
Description: Shows a modal dialog window RichText or plain Text report with accompanying check box which the user must check.
See Also: RTFBuilder.
Available only in the .Net Framework platform
Static Method: FormResults.ShowHTMLReport
(Form parentForm,
COREMiniHTMLBuilder htmlValue,
string title = "",
string helpURL = "")
Returns: Nothing (void)
Description: Shows a modal dialog window with a HTML document displayed in a WebBrowser control.
Static Method: FormResults.ShowHTMLReport
(Form parentForm,
string htmlValue,
string title = "",
string helpURL = "")
Returns: Nothing (void)
Description: Shows a modal dialog window with a HTML document displayed in a WebBrowser control.
See Also: COREMiniHTMLBuilder.
ScreenShots of different Report Dialogs