必须安装有Winnetdll文件 功能比WINSOCK强大 但MSDN里的说明和例子都是C++的连VB的都没有 我自己试探出这么一些功能 先贴出来供大家参考 *所有函数如果运行失败返回 成功返回或者句柄 *参数大部分是用默认的参数具体内容查帮助文件 检查INTERNET是否连通 DECLARE Integer InternetGetConnectedState IN wininetdll IntegerInteger InternetGetConnectedState() 自动拨号使用默认的拨号连接 (IE的INTERNET连接设置里必须设置拨号连接 另外还有个InternetDial函数必须使用拨号连接名称) DECLARE Integer InternetAutodial IN wininetdll IntegerInteger InternetAutodial () 自动中断拨号或者连接 DECLARE Integer InternetAutodialHangup IN wininetdll Integer InternetAutodialHangup() 获得一个连接句柄 Declare Integer InternetOpen IN wininetdll String Integer String String Integer lnOpen= internetOpen(MyFtpnullnull) 连接到FTP SERVER Declare Integer InternetConnect in wininetdll IntegerStringIntegerString String Integer Integer Integer lnConn=InternetConnect(lnOpen anonymous ) 下载一个文件 还有不少FTP或者HTTP的操作文件或页面的函数 有兴趣者自己去试 Declare Integer FtpGetFile in wininetdll Integer String String Integer IntegerIntegerInteger ? FtpGetFile(lnConn/bussys/readmetxtc:\Temp\msreadmetxt) 中断连接 Declare Integer InternetCloseHandle In wininetdll Integer InternetCloseHandle(lnConn) 下面是WININETDLL里大部分的API函数是用VB格式的声明: Declare Function GetProcessHeap Lib kernel () As Long Declare Function HeapAlloc Lib kernel (ByVal hHeap As Long ByVal dwFlags As Long ByVal dwBytes As Long) As Long Declare Function HeapFree Lib kernel (ByVal hHeap As Long ByVal dwFlags As Long lpMem As Any) As Long Declare Sub CopyMemory Lib kernel Alias RtlMoveMemory ( _ hpvDest As Any ByVal hpvSource As Long ByVal cbCopy As Long) Declare Sub CopyMemory Lib kernel Alias RtlMoveMemory ( _ hpvDest As Long hpvSource As Any ByVal cbCopy As Long) Public Const ERROR_NO_MORE_FILES = Public Declare Function InternetFindNextFile Lib wininetdll Alias InternetFindNextFileA _ (ByVal hFind As Long lpvFindData As WIN_FIND_DATA) As Long Public Declare Function FtpFindFirstFile Lib wininetdll Alias FtpFindFirstFileA _ (ByVal hFtpSession As Long ByVal lpszSearchFile As String _ lpFindFileData As WIN_FIND_DATA ByVal dwFlags As Long ByVal dwContent As Long) As Long Public Declare Function FtpGetFile Lib wininetdll Alias FtpGetFileA _ (ByVal hFtpSession As Long ByVal lpszRemoteFile As String _ ByVal lpszNewFile As String ByVal fFailIfExists As Boolean ByVal dwFlagsAndAttributes As Long _ ByVal dwFlags As Long ByVal dwContext As Long) As Boolean Public Declare Function FtpPutFile Lib wininetdll Alias FtpPutFileA _ (ByVal hFtpSession As Long ByVal lpszLocalFile As String _ ByVal lpszRemoteFile As String _ ByVal dwFlags As Long ByVal dwContext As Long) As Boolean Public Declare Function FtpSetCurrentDirectory Lib wininetdll Alias FtpSetCurrentDirectoryA _ (ByVal hFtpSession As Long ByVal lpszDirectory As String) As Boolean Public Declare Function FtpGetCurrentDirectory Lib wininetdll Alias FtpGetCurrentDirectoryA _ (ByVal hFtpSession As Long ByVal lpszDirectory As String ByRef lpdwCurrentDirectory As Long) As Boolean Initializes an applications use of the Win Internet functions Public Declare Function InternetOpen Lib wininetdll Alias InternetOpenA _ (ByVal sAgent As String ByVal lAccessType As Long ByVal sProxyName As String _ ByVal sProxyBypass As String ByVal lFlags As Long) As Long Opens a HTTP session for a given site Public Declare Function InternetConnect Lib wininetdll Alias InternetConnectA _ (ByVal hInternetSession As Long ByVal sServerName As String ByVal nServerPort As Integer _ ByVal sUsername As String ByVal sPassword As String ByVal lService As Long _ ByVal lFlags As Long ByVal lContext As Long) As Long Public Declare Function InternetGetLastResponseInfo Lib wininetdll Alias InternetGetLastResponseInfoA ( _ lpdwError As Long _ ByVal lpszBuffer As String _ lpdwBufferLength As Long) As Boolean Type of service to access Opens an HTTP request handle Public Declare Function HttpOpenRequest Lib wininetdll Alias HttpOpenRequestA _ (ByVal hHttpSession As Long ByVal sVerb As String ByVal sObjectName As String ByVal sVersion As String _ ByVal sReferer As String ByVal something As Long ByVal lFlags As Long ByVal lContext As Long) As Long Sends the specified request to the HTTP server Public Declare Function HttpSendRequest Lib wininetdll Alias HttpSendRequestA (ByVal _ hHttpRequest As Long ByVal sHeaders As String ByVal lHeadersLength As Long ByVal sOptional As _ String ByVal lOptionalLength As Long) As Integer Queries for information about an HTTP request Public Declare Function HttpQueryInfo Lib wininetdll Alias HttpQueryInfoA _ (ByVal hHttpRequest As Long ByVal lInfoLevel As Long ByRef sBuffer As Any _ ByRef lBufferLength As Long ByRef lIndex As Long) As Integer InternetErrorDlg Public Declare Function InternetErrorDlg Lib wininetdll _ (ByVal hWnd As Long ByVal hInternet As Long ByVal dwError As Long ByVal dwFlags As Long ByVal lppvData As Long) As Long Public Declare Function GetDesktopWindow Lib userdll () As Long The possible values for the lInfoLevel parameter include: Reads data from a handle opened by the HttpOpenRequest function Public Declare Function InternetReadFile Lib wininetdll _ (ByVal hFile As Long ByVal sBuffer As String ByVal lNumBytesToRead As Long _ lNumberOfBytesRead As Long) As Integer Public Declare Function HttpSendRequestEx Lib wininetdll Alias HttpSendRequestExA _ (ByVal hHttpRequest As Long lpBuffersIn As INTERNET_BUFFERS ByVal lpBuffersOut As Long _ ByVal dwFlags As Long ByVal dwContext As Long) As Long Public Declare Function HttpEndRequest Lib wininetdll Alias HttpEndRequestA _ (ByVal hHttpRequest As Long ByVal lpBuffersOut As Long _ ByVal dwFlags As Long ByVal dwContext As Long) As Long Public Declare Function InternetWriteFile Lib wininetdll _ (ByVal hFile As Long ByVal sBuffer As String _ ByVal lNumberOfBytesToRead As Long _ lNumberOfBytesRead As Long) As Integer Public Declare Function FtpOpenFile Lib wininetdll Alias _ FtpOpenFileA (ByVal hFtpSession As Long _ ByVal sFileName As String ByVal lAccess As Long _ ByVal lFlags As Long ByVal lContext As Long) As Long Public Declare Function FtpDeleteFile Lib wininetdll _ Alias FtpDeleteFileA (ByVal hFtpSession As Long _ ByVal lpszFileName As String) As Boolean Public Declare Function InternetSetOption Lib wininetdll Alias InternetSetOptionA _ (ByVal hInternet As Long ByVal lOption As Long ByRef sBuffer As Any ByVal lBufferLength As Long) As Integer Public Declare Function InternetSetOptionStr Lib wininetdll Alias InternetSetOptionA _ (ByVal |