You are reading help file online using chmlib.com
|
function CreateOutputMsgPage(const AfterID: Integer; const ACaption, ADescription, AMsg: String): TOutputMsgWizardPage;
Creates a wizard page containing only static text. The AMsg parameter specifies the text to display.
var Page: TOutputMsgWizardPage; ... // Create the page Page := CreateOutputMsgPage(wpWelcome, 'Information', 'Please read the following important information before continuing.', 'Blah blah blah.');
You are reading help file online using chmlib.com
|