Partager via


Méthode Iasphelp ::get_ErrorDscp

La propriété ErrorDscp permet à une page Web ASP de convertir un code d’erreur en chaîne descriptive.

Syntaxe

HRESULT get_ErrorDscp(
  [in]  long lErrCode,
  [out] BSTR *pVal
);

Paramètres

lErrCode [in]
Spécifie le code d’erreur à convertir en chaîne descriptive.

pVal [out]
Pointeur fourni par l’appelant vers un emplacement qui reçoit la chaîne descriptive qui correspond au code d’erreur dans le paramètre lErrCode .

Valeur retournée

Les codes d’erreur Win32 peuvent également être retournés.

Code de retour Description
S_OK L’opération a réussi.
E_HANDLE La méthode Iasphelp ::Open n’a pas été appelée.
E_POINTER Pointeur pVal non valide.
E_OUTOFMEMORY Mémoire insuffisante.

Exemple VBScript

La méthode Iasphelp ::Open doit être appelée avant que la propriété Iasphelp ::ErrorDscp puisse être interrogée.

Dim objPrinter, ErrorCode, ErrorString
strPrinter = Session("MS_printer")
Set objPrinter = Server.CreateObject ("OlePrn.AspHelp")
objPrinter.Open strPrinter
...
' Get error code.
...
ErrorString = objPrinter.ErrorDscp(ErrorCode)

Configuration requise

Plateforme cible : Bureau

Voir aussi

Iasphelp ::Open