Communications :: WinSocket - Transfer Recorded WAV Files Between Computers
Mar 27, 2012
I need to transfer Recorded WAV Files betwenn computers. Now I want to transfer C:/Rec/Record.wav from Client to Server, then back, without the client that sent it take it. I know how to do that, the only problem is sending it. How do I do file transfer in winsock vb 10-11?
View 1 Replies
ADVERTISEMENT
Oct 17, 2009
1.How can i deploy my project to other computers and transfer all the files that i need? I know i do publish, but do i need to change any of my files setings, or do anyting inparticular get the files to the automatically deploy.for example how MS Office suppliers all file you need to do templates and stuff.
2.How can i tell the other persons to create a folder if they havent got one? my locations to work from is here, but no one will have the rimless data sheets folder and the shapes folder.C:Program FilesRimless Data SheetsShapes.
View 4 Replies
Dec 20, 2010
I need to write an app that transfer files and folders to others computers in my network vb.net.
View 3 Replies
Aug 22, 2008
I was woundering if it is possible to send messages over network to a lan computer . if it is possible does anyone have the code to make this possible
View 2 Replies
Nov 3, 2009
i want to send a text from my computer to another(1 or more...)remote computer and to receive text from these computers.how can we do that in visual basic express edition 2008. do you have the source code for this...
View 2 Replies
Jul 31, 2008
I would like to know how is it possible to send data over the network using VB 2005 .... ! It must be capable of being the type of sending short text over the network just like chatting
View 1 Replies
Jul 4, 2008
I am trying to write a program to ping computers on my network to see if they are turned on. So far i have the following:
Code:
If My.Computer.Network.Ping("192.68.0.5") Then
MsgBox("Computer is on.")
Else
MsgBox("Ping request timed out.")
End If
If i use ip addresses, this works fine but i would rather use hostnames due to the ip addresses being dynamic (something which is outside my control). Using the hostname, it reurns "Computer is on" if the ping is successful, but if the hostname cannot be found, instead on returning "Ping request timed out", an error occurs as follows:
A first chance exception of type 'System.Net.NetworkInformation.PingException' occurred in System.dll
View 2 Replies
Mar 20, 2012
I will use the Background Intelligent Transfer Service (BITS) to transfer files from a client (laptop) to a shared folder on a server within our local network.The problem is a very slow network bandwith, if we transfer a file, the other clients canīt work, all requests to other clients (application) or viewing internet pages needs a long time.My idea is to use BITS in my tool to copy/transfer a file from client to server, also I hope to get more performance for the internet requests.
View 2 Replies
Sep 3, 2008
It's working kinda, but at the end when transfer is finished the file on the ftp is corrupted. I found about 3 ecamples online with this class and they all give me the same corruption
Code:
Imports System.Net
Imports System.IO
[code].....
View 2 Replies
Feb 9, 2011
I have a barcode scanner that beside scanning the barcode it also snaps an image. I wrote a simple application that searching all ports locating in which one the scanner is connected and opening the port.
I can easily read any barcode and the send command to the scanner to pass me the image taken on the port, but i have a problem re-constructing the image from the bytes i read.
Code:
sendCommand()
Dim img(SP.BytesToRead) As Byte
SP.Read(img, 0, img.Length)
[Code]....
I can get the image from the scanner in any format needed (jpg,bmp etc) so no need to provide a precise solution just a general idea.
View 15 Replies
Mar 28, 2012
It is possible to copy on file (.txt) from a computer to another over LAN without using file sharing? Something like client-server app?
View 5 Replies
Apr 21, 2012
What code can I use to send a simple text file to someone else's computer and choosing a save location and vice versa from theirs and loading it into a rich text box in their application that they have open, and vice versa? Their application is the same as mine (sort of like how an instant messenger works-except it does not save, send, and load text files like I am aiming for)
View 3 Replies
Jun 29, 2012
When try to transfer files between 2 different pc but works fine when transferring file from & to the same pc. Here is the error I am getting
Writer.position must be non negative number.
Here is the server code
Imports System.Collections.Generic
Imports System.ComponentModel
Imports System.Data
Imports System.Drawing
[Code] .....
View 4 Replies
Feb 23, 2010
is it possible to transfer files using vb.net? Cutting the files from a certain directory and copy it to another
View 2 Replies
Mar 3, 2009
I would like to develop a program (in VB2008) that can send files directly from one computer to another through the internet.
I figure there would be one program on the sending end and a separate on the receiving end. A server and client perhaps?
Anyway, I need to know how to send a file on the host machine in a simple method that is least likely to be blocked by anti-viruses and such. The fewer issues that result in a failed transfer, the better.
Also, note that my goal is to molulize this code (later) so it can be reused for multiple applications such as file sharing, gaming, etc.
View 1 Replies
Oct 21, 2008
I want to make a program that scans a website to find an extension (.png), then tells me all of the files with that extension on the server.Which displays them in a list box. so lets say the website is
[URL]
and i need to find the files, but file browsing is off on the server.So I pretty much need a web crawler. How can i do this?
View 3 Replies
Apr 30, 2010
unable to Transfering certain files
View 1 Replies
Mar 18, 2012
I have been working on a small program that I wish to eventually use to transfer small files over a LAN. I read the following article to get the basic concept of how to make a tcp/ip connection between computers. url... However my aim is to check the IP of the pending TCPClient before accepting it. My current code is below.[code]
View 1 Replies
Aug 10, 2011
(Currently using VB.NET 2010 Express) I'm trying to make a program, the main of which is file transfer. I'm trying to create a program that will keep files and folders synchronized across multiple client computers. I'm using a File system watcher to trigger events, and Using a simple System.Net.Sockets UDP client transfer (found via google) to transfer commands between it and itself on other computers.
Here's that code (this just sends from one textbox to another over the internet)
Imports System.Net.Sockets
Imports System.Net
Imports System.Text
Dim udpClient As New UdpClient(1024)
Dim RemoteIpEndPoint As New IPEndPoint(IPAddress.Any, 0)
[Code] .....
By this method, I can rename, move, or delete files. I want to implement file transfer, so that whenever a new file is created, or updated, my program will automatically transfer the file to the other computers and update them there.
View 3 Replies
Aug 31, 2008
So ive looked everywhere but every example i find doesnt work on visual studio 05 and doesnt convert properly. I simply want to send info from one computer to another through direct connection. if anyone could point me in the right direction it would really be helpful. most stuff i find seems to be more complicated than what im looking for.
then just one other question. both computers will be going through a router. as long as i have the port im using forwarded on the hosts side, that shouldnt be a problem, right?
View 1 Replies
Sep 12, 2010
How can I retrieve a number of images from a directory on my website, and place them in a directory on my computer. An important consideration is, that this is not private, so these would be images in a public directory. One more thing. I would like to do this using an http transfer. I have never written anything like this before, so I am not even sure where to start.
View 6 Replies
Jun 16, 2012
I am trying to make file transfer program in vb.net 2008 for big files eg. 10 GB.i was able to code simple socket program to transfer files with small size by using Sockets but if the file is large then "File.ReadAllBytes(ComboBox1.Text)" command will not work cause it use lot of memory & if the file is really big i.e. 10 GB it give not enough memory error, so i made a loop that sends data in small amounts, but this give me a larger file size with repeated data at end of the file.
[code]...
View 7 Replies
Jul 27, 2010
I am looking for a way to transfer files using SFTP (SSH FTP) and log and check for errors from within a new VB.NET console app. without purchasing any third party components.
View 3 Replies
Mar 26, 2009
how can I send a Message String with Attached File? AFAIK, we are sending Message String via Byte Array.
View 4 Replies
Jan 4, 2010
I'd like to take information from a text file I 've created so as each line in the file corresponds to one cell in a row in a grid using DataGridView. I'm having trouble doing that.[code]....
View 3 Replies
Oct 20, 2009
i m save location in listboxes Like this:
Private Sub Form1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Me.MouseMove
ListBox1.Items.Add(e.Location.X.ToString)
ListBox2.Items.Add(e.Location.Y.ToString)
End Sub
View 14 Replies
Mar 1, 2012
How To Save A Recorded Video In VB 2008? I'm having a problem on my code um i can't seem to save the video that i have recorded in my project. everytime the dialog that allows me to save and when i check the destination where i saved the video it won't appear so i don't know if it really recorded or it just won't save. and also the filename. whenever i add new song in the listbox for the song list [Code]
View 6 Replies
Jul 22, 2011
How can I take recorded coordinates (x,y) and place them into an array? I have the variables set up and everything, but I am unsure how to declare the array for this purpose and how to take what I have in the array and graph the coordinates later on.
Here is the relevant
vb.net
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
TextBox1.Text = TextBox1.Text + 1
[Code].....
View 9 Replies
Mar 2, 2010
I am developing and application for playing back recorded clips from dvr. There will be 10 persons reviewing the recorded clips all the time. When the person want to review a particular camera recorded clip, he will send a command through COM to my application. Then my application will read the data from COM and connect to dvr and send data to the dvr. If only 1 person is doing the operation my application works fine. If 10 persons continuously working, then my application is getting very slow and the response time back to the person is high which will make the person frustrated to use the software.
Now, when ever I receive data from COM I'm adding into arraylist and I'm processing one by one. I've 10 forms in my application and when ever I receive data from person1 I'll send that data to form1 and person2's data will be send to form2 and so on for processing. What could be the better way to write my application in order to make the response time to the user faster so that, they'll get the recorded clips faster?
View 21 Replies
Feb 23, 2010
How you record a screen and then output the recorded frames in a .avi file or .wmv, doesn't really matter what kind of file.
View 1 Replies