That didnt help it seems. Gave me a 34 byte instead of 2 or 4 byte file though.
Main Topics
Browse All TopicsI have succeded in connecting two progs via winsock, now I want to send data. I try this, but it gives me a corrupt file on 4bytes!
Can U help??
'In the client part I do following
Private Sub Winsock1_DataArrival(ByVal
Dim instreng
Winsock1.GetData instreng, vbByte, bytesTotal
f = FreeFile
Open App.Path & "\temp.mid" For Append As f
Write #f,
Close
End Sub
Private Sub Winsock1_SendComplete()
f = FreeFile
fil = App.Path & "\temp.mid"
Open fil For Input As f
Input #f, midi
MMControl1.filename = midi
Close f
MsgBox "File is read"
End Sub
'And in the server part I do this;
Private Sub Command1_Click()
fil = App.Path & "\test.mid"
Winsock1.SendData fil
End Sub
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: schildPosted on 1998-10-25 at 01:21:29ID: 1441436
Hello CAT
try this code:
Private Sub Command1_Click()
dim FilePathName as String * 100
FilePathName = App.Path & "\test.mid"
Winsock1.SendData FilePathName
End Sub
Good Luck
Schild