Sample code for 30+ languages & platforms
AutoIt Requires Chilkat v11.0.0+

Transition from ZipEntry.GetDt to ZipEntry.FileDateTimeStr

Provides instructions for replacing deprecated GetDt method calls with FileDateTimeStr.

Chilkat AutoIt Downloads

AutoIt
$oEntry = ObjCreate("Chilkat.ZipEntry")

;  ...
;  ...

;  ------------------------------------------------------------------------
;  The GetDt method is deprecated:

Local $oDtObj = $oEntry.GetDt()
If ($oEntry.LastMethodSuccess = False) Then
    ConsoleWrite($oEntry.LastErrorText & @CRLF)
    Exit
EndIf

;  ...
;  ...

;  ------------------------------------------------------------------------
;  Do the equivalent using FileDateTimeStr.

$oDt = ObjCreate("Chilkat.CkDateTime")
$oDt.SetFromRfc822($oEntry.FileDateTimeStr)