songyueliang(宋月亮) ,我没有找到,请指教

解决方案 »

  1.   

    那个贴子里有好多,
    我当时只留下了一个,
    你先看看吧
    还是不行的话,我再帮你找好了。
    'Author:Dah
    'Coded time:2000.11.10  //y.m.d
    'Usage:transfer a file to another pc through intranet with winsock power
    Option Explicit
    Dim mybyte() As Byte  '发送方数组
    Const filecomesMSG = "a file is coming "  '有文件到来
    Const RemoteIsReadyMSG = "I'm ready        "  '准备好了
    Const FileisOverMSG = "the file is ended"  '文件完毕
    Const RemoteDenyMSG = "the user canceled"
    Const filecountMSG = "the file lengh is"
    Dim arrdata() As Byte  '收到的信息
    Dim filesave As Integer  '保存文件的句柄
    Dim filehandle As Integer  '发送方文件的句柄
    Dim MyLocation As Double
    Dim myMSG As String  '消息
    Dim FileisTransfer As Boolean  '文件正在传送
    Dim Isendfile As Boolean  '是否是本人在传送
    Dim FileisOver As Boolean  '文件是否已经完毕
    Dim Counttime As Integer '需要传递的次数
    Dim totaltime As Variant
    Private Sub cmdsend_Click()
    On Error GoTo errorhandle
    'this is needed for correct filename
    filehandle = FreeFile
    If Mid(File1.Path, Len(File1.Path), 1) = "\" Then
    Open File1.Path & File1.FileName For Binary Access Read As #filehandle
    Else
    Open File1.Path & "\" & File1.FileName For Binary Access Read As #filehandle
    End If
    Isendfile = True  '是本人在传送
    FileisOver = False  '文件刚开始
    cmdsend.Enabled = False
    Label1.Caption = "Wait for reply..."
    MsgBox ("the selected file size is " & LOF(filehandle) & " bytes")
    totaltime = Int(LOF(filehandle) / 4000 + 1)
    MyLocation = Loc(filehandle)
    Winsock.SendData filecomesMSG & File1.FileName    '发送发出文件信息
    Winsock.SendData filecountMSG & totaltime
    Exit Sub
    errorhandle: MsgBox ("You havn't choose a file!")
    End SubPrivate Sub Dir1_Change()
    File1.Path = Dir1.Path
    End SubPrivate Sub Drive1_Change()
    Dir1.Path = Drive1.Drive
    End SubPrivate Sub Form_Load()
    Drive1.Drive = "c:\"
    Winsock.RemoteHost = "255.255.255.255"
    Winsock.LocalPort = 7904
    Winsock.Bind 7904
    Winsockfile.RemoteHost = "255.255.255.255"
    Winsockfile.LocalPort = 7905
    Winsockfile.Bind 7905
    FileisTransfer = False  'initialize the bool value
    Isendfile = False
    FileisOver = True
    Counttime = 0
    Label1.Caption = "Ready..."
    End SubPrivate Sub Timer1_Timer()
    Dim i As Integer
    If LOF(filehandle) - MyLocation > 4000 Then
    ReDim mybyte(0 To 4000)
    Get #filehandle, , mybyte
    MyLocation = Loc(filehandle)
    Winsockfile.SendData mybyte
    Counttime = Counttime + 1
    Label1.Caption = "the select file is being transfered..." & "about " & Counttime & " / " & totaltime
    Timer1.Enabled = False
    Else
    ReDim mybyte(0 To LOF(filehandle) - MyLocation - 1)
    Get #filehandle, , mybyte
    Winsockfile.SendData mybyte
    FileisTransfer = False
    Timer1.Enabled = False
    FileisOver = True
    End IfEnd SubPrivate Sub Winsock_DataArrival(ByVal bytesTotal As Long)
    Winsock.GetData myMSG
    Select Case Mid(myMSG, 1, 17)
    Case filecomesMSG    '这些消息发送方和接受方都可收到
    'do display a form
    If Not Isendfile Then  '接受方处理这些事情
    On Error GoTo errorhandle
    CommonDialog1.FileName = Mid(myMSG, 17, Len(myMSG))
    CommonDialog1.ShowSave
    filesave = FreeFile
    FileisTransfer = True
    cmdsend.Enabled = False
    Open CommonDialog1.FileName For Binary Access Write As #filesave
    Winsock.SendData RemoteIsReadyMSG
    Label1.Caption = "the select file is being transfered..."
    End If
    Case RemoteIsReadyMSG
    'do begin transfer a file
    '如果文件还没有结束,也就是说,只有主机才能受到
    If Isendfile Then
    If Not FileisOver Then
    Timer1.Enabled = True
    Label1.Caption = "the select file is being transfered..."
    Else
    Winsock.SendData FileisOverMSG
    End If
    End If
    Case FileisOverMSG
    If Not Isendfile Then '客户机处理
    Close #filesave
    FileisTransfer = False
    Else  '主机处理
    Isendfile = False
    Close #filehandle
    End If
    MsgBox ("the file is transfered successfully!")  '大家一起处理
    Isendfile = False
    cmdsend.Enabled = True
    Label1.Caption = "Ready..."
    Case RemoteDenyMSG
    If Isendfile Then
    MsgBox ("The user canceled this transfer session!")
    Isendfile = False
    FileisOver = True
    cmdsend.Enabled = True
    Label1.Caption = "Ready..."
    Close #filehandle
    End If
    Case filecountMSG
    If Not Isendfile Then
    totaltime = Mid(myMSG, 17, Len(myMSG))
    End If
    End Select
    Exit Sub
    errorhandle: Winsock.SendData RemoteDenyMSG
    End Sub
    Private Sub writetofile()
    Put #filesave, , arrdata
    End SubPrivate Sub Winsockfile_DataArrival(ByVal bytesTotal As Long)
    If FileisTransfer Then
    Winsockfile.GetData arrdata, vbArray + vbByte, 4001
    writetofile
    Winsock.SendData RemoteIsReadyMSG
    Counttime = Counttime + 1
    Label1.Caption = "the select file is being transfered..." & "about " & Counttime & "/" & totaltime
    End If
    End Sub
      

  2.   

    sry,我仔细看了一下,是否用2个winsock控件控制?如果是的话,对不起,我自己早就试过了,
    而且简单许多,就是将文件分解传送。
    我现在想的是,我一次全部将文件读入到缓冲区,(23K左右),一次发出(senddata能够完成),但是缓冲区每次只给我发8K,接受方要分3次才能接收完,此时,客户端产生sendcomplete事件。能否将缓冲区中最大32k的数据在接受端一次接收完成?