Dialog\_ShowError
VB Scripting Library > OSD Scripting Library > Dialog functions (OSD)
Dialog_ShowError(sText)
Section titled “Dialog_ShowError(sText)”Will show a messagebox to the user that contains the text in the argument with an error icon to the left and an OK button.
Arguments
Section titled “Arguments”| ARGUMENT | DESCRIPTION | TYPE |
|---|---|---|
| sText | The text to display | String |
Return Type
Section titled “Return Type”Boolean, TRUE if function completed successfully.
Remarks
Section titled “Remarks”Example
Section titled “Example”The following example will show a dialog to the user, where the text is broken into 3 lines using the vbCrLf function.
Private Function IncludeScript(sScriptFile) '...End Function
'Begin bStatus=True If bStatus Then bStatus=IncludeScript("customlib.cis") If bStatus Then bStatus=IncludeLibrary("Capalib.cin") If bStatus Then bStatus=IncludeLibrary("Osdlib.cin") If bStatus Then bStatus=Job_Start("WS","Script Name","1.0","ScriptName.log","INSTALL") If bStatus Then bStatus=OSD_Initialize()
If bStatus Then bStatus=Dialog_ShowError("The following" & vbCrLf & "Text is broken" & vbCrLf & "Into three lines")
Job_End(bStatus)'End mainSee Also
Section titled “See Also”Scripting Guidelines, Dialog_ShowWarning, Dialog_ShowInformation