GetExtendedErrorMsg Method
Class: FTP_SERVICE
Returns the extended error message generated during a function call.
=
Object.GetExtendedErrorMsg
()
Return value Character
Returns the extended error message.
Example
LOCAL loFTP,lcPom
#INCLUDE "ftp.h"
SET PROCEDURE TO ftp.prg ADDITIVE 
loFTP=CREATEOBJECT('ftp_service') 

IF loFTP.OpenInternet("ABONNE", "PWD", "10.10.10.10", "21")
   IF !loFTP.ChangeFTPDirectory("_!_"+CHR(1)+CHR(9))
      ?loFTP.GetExtendedErrorMsg()
   ENDIF
   =loFTP.CloseInternet() 
ENDIF
RELEASE PROCEDURE ftp.prg
See also
Expand/Collapse source code of procedure GetExtendedErrorMsg Source Code
      RETURN This.cExtended_Message