Send File On A Computer Connected To LAN?
Jul 14, 2011How to send file on a computer connected to LAN?
View 4 RepliesHow to send file on a computer connected to LAN?
View 4 RepliesCould anybody give me code to connect with GSM mobile and send sms through it?
View 2 Replieshow to use at commands in vb.net and how to send image from computer connected to GSM modem to a mobile using vb.net
View 1 RepliesHow do you share files from one computer to another that are connected in one wireless internet connection? I mean, it's possible using shared folders this means it could be possible in vb.net too..
View 1 RepliesVS 2008 Send a file from one computer to another???
View 1 Replieswhich net. framework is needed to let ane .exe file work on another computer??
View 4 RepliesHow to have the computer to tell the usb connected device what to do.
View 1 RepliesCan anyone provide the resource to learn making connection between computers over the LAN and retrieve files? EDIT: And can I browse the folders like its done in the local machine?
View 3 Repliesi have a task to create a TCP Server (a program that is listening on its network card interfaces for incoming data stream).I have search on the internet and i found that i can use two methods : Socket or TCPListener class.I have created an example for Socket class, but i wondering how could i test it? I need to check that if another computer in the network send some string data to the listener computer , then this message should be displayed.Here is the example from microsoft that i am using for TCP Server using Socket:
Public Shared Sub Main()
' Data buffer for incoming data.
Dim data = nothingc[code]....
But it does not work because of the PORT setting.If in the TCP Server i have "Dim localEndPoint As New IPEndPoint(ipAddress, 0)" the client crashes, but if i change the port from any (0) to 11000 for example,the client works fine.Do you know why?
Later edit2:Maybe i should have started with this question:Which method is recommended for my scope?asynchronous or synchronous method ?
getting the computer names which are logically connected in the network using vb.net.
View 2 Repliesi need to check if my Computer is connected with an Active Directory Domain or only in a Workgroup. Is this possible?
View 4 RepliesI have this code where I get all the IP's connected to the network.[code]...
But my LAN game is sending to those IP's that are connected to the network. but not yet opened my game. what I want is how do I code that the tcplistener or tcpclient will tell the host that they are active.....so that If they are active...their IP's are the only one's who will receive.
I want to send a simple command, such as "v20" followed by a carriage control character, to a heating/cooling block connected to a desktop computer running Windows XP. I am able to get the commands to work within a terminal emulator. I want to compile a simple program that will be executed by software used to control a liquid handling robot.I've looked at the how to send strings to serial ports in visual basic page and modified that code ever so slightly to send the data that I want. However, it does not work and my heating/cooling block is not changing temperatures.
Here's what I have written:
Sub SendSerialData(ByVal data As String)
data = "n65"
' Send strings to a serial port.
[code]....
Is their a way to send the server client info(account) With out connecting to the server(Full back and forth communication).
View 4 RepliesI have a Zebra TLP 2844 Printer connected by USB to my computer. I want to send EPL Commands from Visual Basic .Net to the printer through the USB Port wich the printer is connected to. USB is a Serial port but IT IS NOT COM PORT. So, I don't want the method of connecting the COM port with VB.Net. I want a USB method or any helpfull idea or code.
I searched the net for many days but no solution was found.
Briefly, I want to print to Zebra TLP 2844 from Vb.Net over USB port.
How can I make a program so you click a button and select a File using a OpenFileDialog and click send on your computer and it will send the file to a different computer and then a SaveFileDialog will show asking where to save the file on the other computer. Oh ya I cant use WinSock or whatever becuase im using Windows Vista 64 Bit. I need it because I for some reason cant use printer sharing. It might be because im on A 64bit Vista Machine and I want to print a file off of a 32bit XP Home Machine.
View 6 RepliesI'm using interface with relay and interface is connected to computer on COM (serial) 9 pins port. In Visual Studio 2005 I'm using this
SerialPort1.Open
SerialPort1.DtrEnable = True
SerialPort1.Breakstate = True
[code].....
I need a code that will let me send string or text to the same application running on a different computer ? im completely new to sending and recieving information in an application.
View 3 RepliesI'm working on a tcp/ip project for the company i working for, with another company, we are building the server side and they're building the client side. while can send thousands of tcp/ip request over the net from one computer to another and my server can handle them very easily, from some reason when the company we are work with send a single tcp/ip request to my server with their client application, my server do get the request correctly and handle it very well BUT, after one request my server takes 25% of the cpu usage, after 3-4 requests the server takes 100% of the cpu usage,
[Code]....
I need to copy a file from a local computer to a remote computer on the network, if i try to use File.Copy without logon i get the following error:"Logon failure: unknown user name or bad password."How do I provide user name and password for file copy?
View 2 Repliesi've been wanting to do this for a few years now and it amazes me that no one can come up with a solution.i want to write a program (preferably in vb.net) that can send a message to another computer (or device) that is connected to the same network as me. I want the message to appear on the other computer (or device) in a popup message box. Also, it would be ideal if this could be done through some sort of bluetooth connection, if not then local ip connection will do. I don't know how i would go about doing this but i know it's possible because i've seen some programs do it... in fact i've seen a program called blackrain that without any additional software installed, can display messages on an ipod touch screen to instruct the yser what to do, and then display the results from their input on the computer screen, almost instantly. I would like to know how that works as well if anyone has any thoughts please feel free to share them!
[Code]...
to do a program that can send a message in other computerthru LaN or Computer NetworkExample im in Server and i will send it is \PC-01here is the picture i design it but i don't know the code
View 1 RepliesOn my program I am trying to make a ToolStripStatusLabel's text change to "connected" if connected to a network and if not connected to a network change the text to " Not Connected" then I don't know how to display a image if connected to a network or not connected. So if the computer is connected to a network I have a image that I would like to be displayed next to the ToolStripStatusLabel. And if not connected to a network, can the program display a different image? I tried this:
My.Computer.Network.IsAvailable=True(ToolStripStatusLabel2.Text "Connected")
My.Computer.Network.IsAvailable=False(ToolStripStatusLabel2.Text "Not Connected")
I am trying to find out if the connection of my sockets (TCPClient) is connected or not connected. I am using the following code:
[Code]...
I wrote program that will send keystrokes to a computer if a button is pressed. The button is wired to a db9 connector and plugged into the pc. The program works, except I can not figure out how to detect if the cable gets unplugged. I am monitoring the CD pin change event to send keystrokes, but if the cable is not plugged in then I need it to send a messagebox.
View 8 RepliesIs it possible to send window messages from one computer to another through Dot Net 2008.suppose i have 2 computers on a domain, now i want to send message from one computer to another.
View 3 RepliesI want to create a program that will send data across my network to another computer. The data will be taken and used as sort of a command for the computer to load a webpage, or whatever I decide to do with it. I was familiar with the winsock control in Vb6.
View 2 RepliesI'm thinking about how I'm going to connect a computer to a projector and I came to think if it is possible to send a live stream of a computers screen to another computer via for example TCP or some other protocol. It must be possible since for example TeamViewer and other long-distance IT-support applications can do this. The thing is that I dont have a clue about where to start. And is it difficult to output the stream once it's recieved?
[Code]...
I have created multiple forms in VB.NET that need to be sent out in emergency situations. For example, the Fire form will instruct employees that they need to evacuate the building, the Tornado form will instruct employees that they need to go to the basement, etc. I have the forms created where they will display over my own computer when I run the application. I have also figured out how to get the list of computers from Active Directory. Now I am stuck. How do I make the form display on another network computer? Does anyone know how to do this?
View 2 RepliesI'm trying to send some data from one computer to another via Wireless adapter and these data are texts and images?
giving the source code in vb.net?
Or is there any library or reference that i can use in the vb.net?