4D Internet Commands v16

IT_ErrorText

ホーム

 
4D Internet Commands v16
IT_ErrorText

IT_ErrorText 


 

IT_ErrorText ( error ) -> 戻り値 
引数   説明
error  整数 in 他のコマンドから返されたエラーコード
戻り値  文字 in Text of the error

説明   

IT_ErrorText コマンドはerror整数値を受け取り、エラーの説明テキストを返します。このコマンドは他の多くの4D Internet Commandsと異なり、数値を返さないことに注意してください。

error はエラーコードを表す数値です。

例題  

以下のErrorCheckルーチンの例題は、エラーの原因を説明する警告メッセージを表示します。

  `Method: ERRCHECK ("Command Name"; Error# ) -> True/False
 C_TEXT(vErrorMsg)
 $Command:=$1
 $Error:=$2
 $Result:=True
 If($Error#0)
    $Result:=False
    vErrorMsg:=IT_ErrorText($Error)
    ALERT("ERROR -- "+Char(13)+"Command: "+$Command+Char(13)+"Error Code:"+String($Error)
    +Char(13)+"Description: "+vErrorMsg)
 End if
 $0:=$Result



参照 

Appendix A, プログラムTips

 
プロパティ 

プロダクト: 4D Internet Commands
テーマ: IC ユーティリティ
番号: 88911

 
履歴 

初出: 4D Internet Commands 6.5

 
ARTICLE USAGE

4D Internet Commands ( 4D Internet Commands v16)