DosErrString Function | |
Return a description string for a DOS error number.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION DosErrString(
dwError AS DWORD
) AS STRING
public static string DosErrString(
uint dwError
)
Request Example
View SourceParameters
- dwError
- Type: DWord
The DOS error number that you want a description for.
Return Value
Type:
StringRemarks Examples
The following example displays the DOS error code as a string:
1FUNCTION Start()
2 Dir AA:
3 QOut(DOSErrString(DOSError()))
4
See Also