VS 2008 - Make A TCPClient And Be A TCPServer Too At A The Same Time?
Apr 23, 2009Can anyone tell me how to make make a TCPClient and be a TCPServer too at a the same time
View 1 RepliesCan anyone tell me how to make make a TCPClient and be a TCPServer too at a the same time
View 1 RepliesIs there a way to see live webcam using tcpclient and tcpserver
View 2 RepliesIm learning Tcp communication right now, and Im a newbie :P First can i add a component to the form for tcpclient and tcpserver like a add one for a textbox and a botton?
Second, which method is better Dim listener As Net.Sockets.TcpListener Dim listenThread As Threading.Thread
or Dim tcpClient As New System.Net.Sockets.TcpClient()
I want to make commands in my tcpserver/client. like irc /kick /ban /unban etc...
View 1 RepliesI have a .Net program that has to run on a cluster of server 2008. To find out the right IP I resolve the dns by GetHostEntry(VarDefinedInfConfig).AddressList(0)
but when I am converting my old code (this code picks the wrong IP) dns.GetHostName().AddressList(0) => this returns a virtual IP and not the right one.So I changed my TcpListener to (dns is parameter from config)Dim listener As TcpListener = New TcpListener(New IPEndPoint(Net.Dns.GetHostEntry(dns).AddressList(0), 8001))
listener.Start()
[Code]...
i know how to make a tcp ip connection using tcpclient and so on. But what i want to know, how to transfer file in a specific computer?
View 2 RepliesI've been working on a program where clients will send short messages to a server.[URL]
On the server side, this code is running to check for incomming messages:
Private mClient As System.Net.Sockets.TcpClient
...
Do
bytesRead = mClient.GetStream.Read(readBuffer, 0, BYTES_TO_READ)
[Code].....
is there a way to send a command to start a prog on the tcpclient side.
View 3 Replies[code]...
Localy i can connect and send / recieve fine with the client application If i connect remotely, the server sees my connection "And" can send data to the connection which the client can see, but the server cant get data from the client. the server continues the loop through and the socket never becomes ".Available"
I need to know when a TcpClient disconnects so I can properly free up the socket and process anything in my program that needs to happen when a client disconnects.
View 3 RepliesDuring development, we usually use localhost as the hostname, like the following
Dim serverListener As New TcpClient("localhost", 8585)
I want the user to be able to enter their IP address via a TextBox instead, like
Dim serverListener As New TcpClient(textbox1.text, 8585)
Is there a way to time out the connection? And loop to retry until it can connect?
View 1 RepliesI have herd that a new type (or old type) of connection when the server connects to the client. Is it really possible to do such a thing with mulit-Servers trying to connect to one client.How would I make one like that O.o.
View 5 RepliesWhat are the basics to creating a tcpclient / server?
View 3 RepliesI was wondering whether it was possible for a message to show up only on the first time the user runs the program.
View 2 RepliesI have a simple tcpclient/server messenger running. Everything works great, except for when a client exits the software. When someone exits, is crashes the server with various exceptions and the server has to be restarted, as well as the clients. What I am looking for is a way to properly "log out" a client BUT leave any other connected client on so that is no break in the chat. Then the person that logged out or a new person can join back in whenever they choose.
CLIENT
''CHAT SERVICE
Dim clientSocket As New System.Net.Sockets.TcpClient()
Dim serverStream As NetworkStream
Dim readData As String
Dim infiniteCounter As Integer
[Code] .....
I am trying to learn how to use the tcplistener and tcpclient classes. While I am attempting to compare something that is sent from the client to the server it seems that it adds a bunch of spaces, the reason I know that is if I write to the console what was sent it adds a bunch of spaces at the end. Is there anyway to get rid of it and just get the original text. I tried trim() but that didn't seem to work but I could have been using it improperly.
View 30 RepliesWe are designing the GUI of a microwave where a user can hit the numeric buttons 0-9 and create the time they want their item to cook. I have everything complete and ready to be submitted, but the only thing left is getting the label that displays the entered time to look like it is in a clock format.
Right now you enter the digits and it puts them like this: 95959
I am trying to get it to always enter it like this: 9:59:59
How can I make the value of the DTP to be 19/03/2010 0:00:01am instead of 19/03/2010 3:57:29pm
View 2 RepliesI have used CSV files before for a simple database of about 12,000 items - this was a simple one page form... Now I want to have the same database but with the data available to multiple forms at the same time.. eg.. Form 1 displaying persons 1,2,3,5,7 name, addy, phone etc and form 2 pulling info for persons 2,3,4,8... Is this possible with CSV files?? or even XML?... The only other thing is that I do it all in .NET 2.0....
View 3 RepliesCan we make the Combo Box not drop down if we click on it even though it have item in the list, button not click-able even though it have the on_click event..textbox not allow to set focus but not in disable mode...everything like design time.. because I want to do drag and drop control like visual studio.. but I can drag now, just when I want to click the control to drag, the control still remain the default function...
View 1 RepliesI am working on a client/server based application and I have run into quite a few snags stumbling my way through I have resolved quite a few issues, and need help with something new. I am using a TCPIP client/server and I find that at the end of each loop when I am reading the data from the network stream it appends a character to the end. I have tried removing the last character but I am not sure if it is getting the whole character successfully because I still get lots of different errors both in binary and xml deserialization whcih I think is related to this. Does anyone know the ascii code for the termination character for TCPServer/Client communications?
View 15 RepliesHowever I have hit a massive brick wall with my program. My program that I'm trying (can't emphasis this word the importance of that word) to create a Client/Server chatroom using TCPClient in Visual Basic. So far I can get my client to speak to my server. However, i'm trying to get the returned data to display in a listbox which never happened, i then tried a label, which again never happened then a text box which I'm sure you can figure out how that went! I'm not great at networking programmers nor am I not bad I'm terrible but duty calls when it comes to projects.
The code I currently have was mostly taken from the net but when I have the program fully work and I understand how the software works I intend to heavily modify for it to suit the needs of what I need to achieve. where I can get my client to display the data from the server that I have already sent to the server (which displays successfully within the server).
[Code].....
How can i make it so that label1.text = the number of time timer1 is ticked ?
View 2 RepliesOut of curiosity, is there a way i can make a program stop or pause for a period of time (which i would choose) before continuing the code WITHOUT a timer.I think I've seen this done before, but I'm not positive.Also note that I'm talking about a forms application (not a console app if that would be any different.)
View 3 RepliesI have Visual Basics 2008 express and I tried to make a autotyper, so this is my
Button1: Timer1.Start
Timer1: Timer2.Start
Timer2: SendKeys.Send(Textbox.text)
Button2: Timer2.Stop
So it was my first try ever with VB and it kind of worked... Only 2 problems;
1. Button 2 doesn't really work, I have to click it really many times, then go to a different window, then click it really many times again, in the meantime it keeps on spamming
2. How do I make my autotyper press enter every single time after the textbox message was typed?
I need some code that will trigger button1 automatically every 1 minute. Is it possible to make in Visual Basic .NET ???
View 1 RepliesI have multiple TcpClient connections to my program. The connections exist as instances of a UserConnection class, that fires events on logon attempt and when receiving messages. My program also holds a Users object, which is a list of a User class objects, holding saved data (username, password etc) for each user that is allowed to log in.
It seems convenient to put a reference object of the respective user, in the UserConnection class (when successful login is verified). Hence, when an event is raised by the connection, the connection object will hold the user reference. As any event handler logic will need to know which user is responsible for the event.
If I don't make a user reference in the UserConnection class, then I need to loop through the users (less than 20) each time, to find the correct user. Not a big deal maybe, but i'm looking to understand how it would be done by an experienced programmer.
When data needs to be sent to a user, I need to access a UserConnection object. Hence the User class also holds a reference to the UserConnection class.
i want to make the Grid view Button(Time In) invisible until the User press Time Out Button. Once the user press the Time Out Button,Time in Button must be shown
View 2 RepliesI need a start date, a Total time passed until now, an average time per step, and a estimated time to finished. How can I do that? Also, I can close the application and when start up again I want to get the time counters as the last time, so How can I store that data is normal txt file (I say txt to take advantage of the ini app file which is a txt).
View 1 Replies