Xojo Plugin Requires Chilkat v11.0.0+
Xojo Plugin
Transition from ZipEntry.GetDt to ZipEntry.FileDateTimeStr
Provides instructions for replacing deprecated GetDt method calls with FileDateTimeStr.Chilkat Xojo Plugin Downloads
Dim entry As New Chilkat.ZipEntry
// ...
// ...
// ------------------------------------------------------------------------
// The GetDt method is deprecated:
Dim dtObj As Chilkat.CkDateTime
dtObj = entry.GetDt()
If (entry.LastMethodSuccess = False) Then
System.DebugLog(entry.LastErrorText)
Return
End If
// ...
// ...
// ------------------------------------------------------------------------
// Do the equivalent using FileDateTimeStr.
Dim dt As New Chilkat.CkDateTime
Dim success As Boolean
success = dt.SetFromRfc822(entry.FileDateTimeStr)