--
Dipl.-Ing.(TH) Winfried Kaiser
Fortune Systems GmbH & Co.
D-24975 Husby
Germany
"Vijay" <vjeyap...@npc.net> schrieb im Newsbeitrag
news:6a3e1c01.03041...@posting.google.com...
What versions of WinInet.dll on what versions of Windows does this happen
on? Is it consistent?
What I did was close and reopen the connection, so the ABOR was not carried
over. What did you do, if anything, right before the call to FtpPutFile?
Paul
"Vijay" <vjeyap...@npc.net> wrote in message
news:6a3e1c01.03041...@posting.google.com...
"Winfried Kaiser" <WKa...@fortune.de> wrote in message news:<OrsjncM...@TK2MSFTNGP12.phx.gbl>...
hInternetOpen = InternetOpen(TEXT("Commission
Express"),INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,INTERNET_FLAG_NO_CACHE_WRITE/*|INTERNET_FLAG_ASYNC*/);
hInetConnect = InternetConnect
(hInternetOpen,szFTPServer,INTERNET_DEFAULT_FTP_PORT,
szFTPUser,szFTPPass,INTERNET_SERVICE_FTP,dwConnectionType|INTERNET_FLAG_EXISTING_CONNECT,0);
if( !FtpPutFile( hInetConnect,sFileName,sDestName,dwTransferMode,0 ) )
{
}
if(hInetConnect) InternetCloseHandle(hInetConnect);
if(hInternetOpen)InternetCloseHandle(hInternetOpen);
"Paul Baker" <ask> wrote in message news:<uEeAXHoA...@TK2MSFTNGP11.phx.gbl>...
Paul
"Vijay" <vjeyap...@npc.net> wrote in message
news:6a3e1c01.0304...@posting.google.com...