Send Message To Another Computer Using LAN Or Network?
Oct 20, 2010
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 Replies
ADVERTISEMENT
Jun 11, 2011
how to send a message to another computer in my companys network using visual studio 2008...I would like to be able to list all the computer names on the network and select certain ones and send them a message that would pop up on their screen
View 3 Replies
Aug 18, 2009
Here is my idea so far: I have a bunch of computers connected in a local network. One of them is a MySQL server, one will have a vb.NET program wich will act as a "second server" and the rest will be different clients. What I want to do is that the "second server" will send out some kind of message or network package to some of the clients in the network, and they will execute a code based on what message it is, or what kind of package it is. I'll give you a simple example:
[Code]...
View 6 Replies
Mar 19, 2012
i 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 ?
View 2 Replies
Mar 23, 2011
I 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 Replies
Aug 9, 2010
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 Replies
Nov 2, 2009
I have this codes here whereby my objective is to develop a writing network applications of programming, a means of sending data to a message board(messaging system). My problem is I couldn't connect it to the server's IP address and port num to send a data through a message board. However I could only display at Form2 txtReceive.
Text = HexConvert.Data_Asc_Hex(sData),
Whereby this code could only convert whatever data(txtSend) that is being typed in, could then convert hex decimal into a textbox(txtReceive). The final result that I would want to achieve is to be able to display the at the textbox(txtReceive) is the <"message protocol"> & <"hex message that is being typed"> & <"parity bit"> into the txtReceive box.
Form form 1, my codes are....
Imports System.Net.Sockets
Imports System.IO
Public Class Form1
Const portNo As Integer = 1234
Dim client As TcpClient
[Code] .....
View 2 Replies
May 18, 2009
I am using the EmailMessage to send email message(s) from my local computer. I am also using the SMTP server of my ISP and generally it works just fine. However, some of the emails are never delivered to the destination (bouncing emails) and i get "Mail Delivery failed: returning message to sender" How do i check if the message can be delivered rather than receive the "returning message to sender"? Should i check the destination email server? I have no idea from where to start actually.
View 6 Replies
Jun 22, 2011
I have a problem I want to make a server and client where the server is password protected and will make the client display files/folders in a designated folder which will be in the server's current directory and the client will ask what IP and password to connect to and if the password is correct is allows the client to access the files/folders in that folder in C.D. of the server and the client can download any file within the folder by clicking a button, yet don't even know where to start.
View 7 Replies
Nov 18, 2011
I have a .NET 2.0 *.dll that calls My.Computer.Network.Ping(). The *.dll is then run out of an *.exe via AppDomain.CreateDomain() and Invoke(). The problem is that this works just fine under Windows XP but under Windows 7, I get an exception saying that no network connection is available. I tried the Ping() call out of a small console application under Windows 7 and it works just fine.
[Code]....
View 6 Replies
Jan 29, 2009
I am developing a computer application designed to monitor the network and CPU statistics on a computer remotely. The monitored computer would have my program installed and the monitoring computer would display, in a form, the information being sent from the remote client.The application does not send any information regarding packets, user names, passwords, etc. It is solely meant for monitoring CPU performance and Network resources remotely.
What would be the best method to send this information over to my host machine?I am programing in Visual Studio 2008 on windows XP. The client machine is also XP. I know this sounds a little shady, but it is required for my little business (http://www.iquorum.net) to monitor what and when something happens on our machines when I and my employees are away.
View 2 Replies
Dec 19, 2006
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 Replies
Jul 11, 2009
I am trying to dial a computer from another computer using Modem for sending files and messge.Follwoing is the code done in dialing computer
Text1.Text = "Test string from App1 "
Number$ = InputBox$("Enter phone number:", "Number$")
If Number$ = "" Then Exit Sub
Temp$ = Status
[code].....
But after the dial tone, i am getting the exception "CTL_E_GETNOTSUPPORTED " at the line MSComm1.Output = Text1.Text?
View 6 Replies
Mar 15, 2012
The way we get my.computer.name, can we also get the name of all computers on a network?
View 1 Replies
Nov 24, 2009
i have a list of Hostnames from computers in my network and now i want to know how i can get the computer-description from these computers.
View 3 Replies
Nov 15, 2005
can anybody teach me how to do that(I'm newbie in network programming), to detect all the computer name's list in the network(LAN with(out) domain) and also the IP's list of the computers.
View 30 Replies
May 20, 2011
How do i determine the network name of my computer?
View 2 Replies
Jul 25, 2010
Im trying to shut down the other PC on my local network through VB.net.. But whenever I run it.. It always says " CANNOT CREATE ACTIVEX ".. How can i solved this problem? By the way im using Windows XP..
Dim strComputer
Do
strComputer = InputBox("Please enter the computer name you want to reboot", "Input")
[code].....
View 3 Replies
Jan 4, 2012
I have a computer that takes in a barcode through a Visual Basic program on one computer and I want to be able to compare that barcode as a String to data on a different computer on the same network by ethernet connection where the data is stored in an Excel 2010 file (.xlsm) in Column A in a workbook called 'Data.xlsm'. Before the data is allowed to be saved or used further in the program on the first computer, I would like for the comparison to happen.
Some more details that you all may or may not need.
Computer 1 (where barcode is scanned): Windows 7, Office 2010
Computer 2 (where data file is stored): Windows XP, Office 2007
View 12 Replies
Dec 3, 2010
i'm trying to upload an image from a vb form with theMy.Computer.Network.UploadFile, but the system responde me with error 404.Here is the code i'm using.Dim siteUri As New Uri("http://localhost:80/users/user_6/prova.jpg")Dim localuri As String = "D:calendariSonia.jpg"
View 6 Replies
Feb 8, 2011
Incomplete - Computer.Network.UploadFile?
View 5 Replies
Dec 29, 2011
I'm working in a project and i need to list only the online computers in my network and put them in a listbox how can i do this
View 5 Replies
Jan 20, 2012
[Code]...
This code is put within a timer that executes every 3 seconds. ( instead of a while loop ) Whenever I run this code, the program takes time to upload the files in the folder to the ftp server, and it becomes (not responding), but it doesn't stop working, after the "not reponding" message, it reponds, but then it becomes not responding.. this is making the uploading process very Slow. I've heard so many things about application.doevents() and Threading and etc.
View 16 Replies
Jul 18, 2012
how to find the list of SQL servers on the local machine...and not the network...
I searched in google but everywhere its for the list of SQL servers on network....I just want my PC SQL server name....
View 4 Replies
Mar 24, 2012
I'm trying to download a file from the internet by clicking a button in MS Access.
I'm trying to use My.Computer.Network.DownloadFile as described here: [URL]
Private Sub Command2_Click()
My.Computer.Network.DownloadFile("http://www.example.com/temp/xml_test.xml", "C:xml_test.xml")
End Sub
but the 'Microsoft Visual Basic for Applications' IDE that I'm typing this into seems to have no idea what I'm talking about (text just turns red).
Can I just not do this through the built in VB editor or can I simply load a library or something to make it work?
Sorry but I'm very new to VB and to Access so search results are not specific enough for me to understand - lord knows I've tried.
I'm using Access 2010 but the DB was created in an previous version - not sure if that matters.
View 1 Replies
Dec 10, 2011
My.Computer.Network.DownloadFile("http://MyDomain.info/MyFile.zip", SaveFileDialog)Hi, the above don't work, what i need is for it to popup a savedialog for the user to browser for a location to download the file
View 4 Replies
Aug 14, 2009
getting the computer names which are logically connected in the network using vb.net.
View 2 Replies
Jun 8, 2011
I have a problem when trying to detect the computers network connection status.
Here is the code I have used:
Dim IsAvalible As String = My.Computer.Network.IsAvailable
If IsAvalible = True Then Label1.Text = "Connected" Else <code>
<code>If IsAvalible = False Then</code> I <code>
Label1.Text = "Disconnected"</code></code>
End If [/ICODE] End If[/ICODE]
But for some even when the network is disconnected or the computers wifi is turned on I still get the result of "Connected". I think there something wrong with the code.
View 2 Replies
Jul 30, 2010
In VB .Net I want to login other computer in network by username and password.[code]...
View 9 Replies
Jul 27, 2010
I'm developing an application that controls the rest of the machines inside a local network and when i try to send a command to Shutdown remotely a pc in this LAN, i get the error Acces Denied, i've changed the Security Policies of that machine por testing purpose at:[code]Changed to this option "Classic - local users authenticate as themselves" as i read in other posts.But still getting the same error, i dont know what's wrong... all OS on my LAN are Windows XP Pro Sp2, and all of them boot Administrative user without entering any password.
View 9 Replies