kennedymr2
Programmer
I am looking at a file on an FTP Server, to get the data of the file.
Dim pData As WIN32_FIND_DATA, hFind As Long, lRet As Long
hFind = FtpFindFirstFile(m_InetConnect, "\rex\k.kkk", pData, 0, 0)
FileTimeToSystemTime pData.ftLastWriteTime, STime
MsgBox (Format(STime.wHour, "####"
& ":" & Format(STime.wMinute, "####"
& ":" & Format(STime.wSecond, "####"
)
I allways get the seconds showing as zero (0)
Is there any way of getting the seconds ???
Dim pData As WIN32_FIND_DATA, hFind As Long, lRet As Long
hFind = FtpFindFirstFile(m_InetConnect, "\rex\k.kkk", pData, 0, 0)
FileTimeToSystemTime pData.ftLastWriteTime, STime
MsgBox (Format(STime.wHour, "####"
I allways get the seconds showing as zero (0)
Is there any way of getting the seconds ???