Nicely quick. Normally poeple take 10min just to explain how to place a button.
@Bobany5 жыл бұрын
Now there's several ways to place a button, I'm just going to do it like this. But you can also go in here...
@MobileGamingMK Жыл бұрын
very clean tutorial
@김안드레-i2f2 жыл бұрын
하나만질문드려도될까요~ ip주소를 실제현재 제아이피주소로해야 서로작동이되나요?
@Andrew-xb8hl8 жыл бұрын
Thank you Fox learn for another great video we can learn C# coding from
@foxlearn8 жыл бұрын
Thank you so much
@manjeetnandal15 жыл бұрын
Your content & teaching pattern ia really awesome. We beginners salute you....
@foxlearn5 жыл бұрын
Thank you so much !
@TheFuture365202 жыл бұрын
I love your sweet voice mummy. Thanks for the good use of the TCP/IP. Good old packets.
@Michu12345612 жыл бұрын
Thank you, amazing tutorial! It helps me a lot
@thomasedwardking72862 жыл бұрын
Great video. Once again I got a lot out of it and especially from those commenting on it. Thanks for all the awesome work you do!
@alexkay98327 жыл бұрын
Everything in the code is right except the client btnConnect part where he didn't connect the client to server - private void btnConnect_Click(object sender, EventArgs e) { btnConnect.Enabled = false; System.Net.IPAddress ip = System.Net.IPAddress.Parse(txtHost.Text); client.Connect(txtHost.Text, Convert.ToInt32(txtPort.Text)); } add this part to client and it should resolve the problem
@jesoleil46343 жыл бұрын
Thank uuuu u are great
@mekabugohan43733 жыл бұрын
nice
@cmoslee2 жыл бұрын
thank you for your advice!!
@SyedDanishTech2 жыл бұрын
kindly tell me why this is show at the end [] . i think this is garbage value. how to remove this [].
@pontusbergstrom6520 Жыл бұрын
Thanks!
@minicikoyunda36303 жыл бұрын
thank you Good Video
@foxlearn3 жыл бұрын
Thank you too
@coralch14 жыл бұрын
Very usefeul! Thanks for your work!
@guillaume84372 жыл бұрын
Hi! I have one (or more) external client(s). How could I use this SimpleTCP Nuget with multithreading? The messages are all received but they pile up in the buffers until the kernel accepts to read them and empty the buffer. I need to mention that these clients work correctly with Wireshark so I think it is not a matter of client but of threads of the server/listener. Could you share any example please?
@kkss70925 жыл бұрын
Briliant example :)
@foxlearn5 жыл бұрын
Thank you !
@Владимир_Великий_Русь5 жыл бұрын
Ни хера не брильянт ! Столько доработок послей этой п....ы нужно делать.
@kislez20133 жыл бұрын
Thank you! Everything works, but I dont understand why client sends "\x13" at the end of the message box string?
@tibo67492 жыл бұрын
Probably something to do with the string formatting
@zakariaannid44392 жыл бұрын
Hello Fox thanks for your efforts. I have a question. I want to get in my application the items connected to my laptop by the LAN RJ45 could this work, or do you have any good suggestions?
@doughknuts2 жыл бұрын
System.Net.IPAddress iP = new System.Net.IPAddress(long.Parse(txtHost.Text)); I get this error: System.FormatException: 'Input string was not in a correct format.' Any ideas?
@evidals9 ай бұрын
you should use: System.Net.IPAddress.Parse(tbHostIP.Text)
@xbxb Жыл бұрын
So this can be used in 2 PCs, using Lan?
@erickjoseruizpaz62275 жыл бұрын
That's amazing... Maybe, I was looking for something similar, I asked, I helped, but I needed to do a KDC, have not you made a video of that? Thank you.
@foxlearn5 жыл бұрын
Can you describe more details? thank you !
@itsimsonbgandibul69263 жыл бұрын
"System.Exception: 'Cannot send data to a null TcpClient (check to see if Connect was called)'" it happens to me when I press "send' :(
@DierAllenChannel2 жыл бұрын
You have to connect the client: client.Connect(txtHost.Text, Convert.ToInt32(txtPort.Text));
@guillaume84374 жыл бұрын
Hello Fox Learn, Thank you for this tutorial since it helped me a lot to my TCP project. Here's another question : How can we create the same kind of little program with 2 TCP ports? Thanks in advance.
@foxlearn4 жыл бұрын
Not clear your intention
@guillaume84374 жыл бұрын
@@foxlearn Sorry. Well, shorter, I want to receive messages from 2 external applications, one using TCP port 1111 and the other using TCP port 2222. Is there any way to create a single server that receives from multiple clients? Or 2 servers in the same program?
@CelestialSoul8 жыл бұрын
Thanks for the video FoxLearn. Can I integrate this C# Client side script with the server written in C language (Using TCP) ? Please help me out.
@bassemk6555 Жыл бұрын
but if i want to make the client webpage to access it using my mobile, what i need to do?
@mertaksu67055 жыл бұрын
thank you so much from Turkey
@foxlearn5 жыл бұрын
You're welcome. Thank you !
@vorapobautomation97604 ай бұрын
I have an error at this line server.Start(ip, Convert.ToInt32(txtPort.Text)); How to fix it ?
@CaptainChubbyDuck2 жыл бұрын
I get an error saying for the IPAdress. Wrong format exception. Cannot convert to IPAdress to long....
@SunShine240244 жыл бұрын
Greate
@foxlearn4 жыл бұрын
Thank you !
@thisguythatguyify4 жыл бұрын
If I try to connect with my public IPV4 address I get the error System.Net.Sockets.SocketException: 'The requested address is not valid in its context' in line 43 of the server app private void btnStart_Click(object sender, EventArgs e) { txtStatus.Text += "Server Starting..."; System.Net.IPAddress ip = System.Net.IPAddress.Parse(txtHost.Text); server.Start(ip, Convert.ToInt32(txtPort.Text)); } How do I fix this so that I can connect to other computers?
@aecomplet7 жыл бұрын
Could you upload this project to the description?
@Jemszie8 жыл бұрын
Thanks a lot Fox Learn. If I want get a IO using ethernet communication from Vision camera device, how can be done in C#. May I use the same concept as this tutorial? Seek your advice. Thank You
@foxlearn8 жыл бұрын
Yes, You can communication with your device via TCP/IP, Bluetooth . Thanks
@Jemszie8 жыл бұрын
Thank You.
@vikeshkumarmishra19816 жыл бұрын
System.Net.IPAddress iP = new System.Net.IPAddress(long.Parse(txtHost.Text));At this line I am getting error: Input string was not in a correct format.What is wrong with this?
@foxlearn6 жыл бұрын
Please check your ip address, then please try again. thank you !
@dakata24165 жыл бұрын
@@foxlearn still dont work!
@Владимир_Великий_Русь5 жыл бұрын
@@foxlearn Ты если выставляешь видео - то выставляй рабочий код а не хуйню которую нужно дорабатывать после тебя !
@phongthachtho95533 жыл бұрын
@@dakata2416 // chuyen string thanh dia chi ip var ip = IPAddress.Parse(txthost.Text.Trim()); if (ip.AddressFamily.ToString() == "InterNetwork") { var localIP = ip; server.Start(localIP, Convert.ToInt32(txtport.Text)); txtStatus.Text += "Server starting... "; }
@bishalpoudel35863 жыл бұрын
@@phongthachtho9553 Hello Thank You So much , Could You mind assisting me please?, as I want to send and receive the data at every time, i.e real time data from one form to another . Please help Me !
@phongnguyenkhac84747 жыл бұрын
In Client Form, how can i know whenever client connected to server or fail?? Why didn't you creat a disconnect button for client??
@puntangerslx2772 Жыл бұрын
does anyone know how to fix this problem on line 59 on the client application i can connect but cant send? "Cannot send data to a null TcpClient (check to see if Connect was called)"
@Louis-zs1rq2 жыл бұрын
Can somebody help? If i connect i get this for the line server.Start(ip, ...) _> Object reference not set to an instance of an object
@otmanaboutaieb22738 жыл бұрын
thank you so much ... It's very helpful
@foxlearn8 жыл бұрын
Thank you so much
@d3zar5 жыл бұрын
Uhmm if i start the client on connected via LAN computers to server computer, will it be work.?
@foxlearn5 жыл бұрын
Yes, it work, but you need to open port
@torzaa187 жыл бұрын
But how would you send a Message to the client from the server? and have the client receive messages
@kb_verruckt27354 жыл бұрын
SimpleTcpServer is not found and ServerData_Received isn't in any context so the autocreation at 5:14 doesn't happen. Help? Edit: I figured it out. Incase anyone else struggled with this here: SimpleTcpServer only works when you use the suggested shortcut with the weird symbol next to it. ServerData_Received is when you type server. (then take the shortcut suggestion) DataReceived then directly next to it type += AND don't press space! Instead PRESS TAB. Edit 2: So i finished everything and got some help from the comments with appearing the text, but afterwards a few seconds, it spams the message like crazy. "You said hi you said hi you said hi you said hi you said hi..." Anyone know what might be causing this?
@foxlearn4 жыл бұрын
You should install SimpleTCP from Nuget
@kb_verruckt27354 жыл бұрын
@@foxlearn I did that. Thanks! Do you know how to make message stop repeating after being sent?
@anandbhagat78602 жыл бұрын
i am stuck here because it is showing cs0103, does not exist for ServerData_Received, please reply asap
@microsecure26126 жыл бұрын
this applications should be on the same network or can works on different network ? thx
@foxlearn6 жыл бұрын
Same network or you can host via internet
@microsecure26126 жыл бұрын
thank u for quick reply, how to host it via internet ?
@foxlearn6 жыл бұрын
You should public your ip and port, you can do that from your modem
@alibarznji20005 жыл бұрын
hello can i use this to send data between seperate computers?
@foxlearn5 жыл бұрын
Yes. You can
@alibarznji20005 жыл бұрын
@@foxlearn thanks
@alibarznji20005 жыл бұрын
i have one question though do i need to change any of the code to communicate between the compuaters?
@programmadore95884 жыл бұрын
10:08 ....whats that at the end of the message and how to remove it??? the special thing after "thank you for watching this video"
@foxlearn4 жыл бұрын
Updated
@omernoach72687 жыл бұрын
hay, can someone explain how to use other ip like if i want a friend to connect to my server how i do it? tnx (:
@kellykrakens4 жыл бұрын
Answer please !
@cybershadoww92243 жыл бұрын
idk youre going to have to pay for a server. or setup some files for a server. and port forward
@kappaladi42293 жыл бұрын
@@cybershadoww9224 what do you write in the files
@cybershadoww92243 жыл бұрын
@@kappaladi4229 Idk
@aywon95316 жыл бұрын
i cannot install TCP/IP in visual studio 2010 needed 4.5 framework. should i upgrade my visual or is there any other solution? 4.0 and higher is not compatible with 2010.
@yali55493 жыл бұрын
How do I check what message was sent to the client? is there a way to do that?
@demyanrudenko4 жыл бұрын
I've got a question not exactly about the client/server itself, but more as a follow-up. My server is fairly lightweight and I'd like to set it up on my personal PC for a time being. However even though I opened specific ports it needs to work, it's still not visible from the outside (obvsly if client is on the same machine as the server, it works without problems). Do you by any chance have any possible suggestions regarding this issue ? Everything remotely helpful is appreciated :)
@foxlearn4 жыл бұрын
If you wan to work outside, you should get a static ip address, then open port. configure your router map to static ip
@omarmahmoudquraa1618 жыл бұрын
Can I use this example to connect between 2 laptops in public network ? or it works only in local network ?
@omarmahmoudquraa1618 жыл бұрын
and I need this source code please ( omarmahmoudquraa@gmail.com )
@dmitryvlasov9318 жыл бұрын
Yes, you can.
@foxlearn8 жыл бұрын
Sent. Thank you
@omarmahmoudquraa1618 жыл бұрын
Fox Learn sent it to me .. give me your mail I will sent it to you
@christophersandaan22918 жыл бұрын
100worxs@gmail.com thanks in Advance :)
@Repoone177 жыл бұрын
i can not add the object "start" after on server.start what can ido do find it min 6:37
@maltewerner24827 жыл бұрын
You have to import the libary
@kennethreytamis1667 жыл бұрын
i have an error System.Exception: 'Cannot send data to a null TcpClient (check to see if Connect was called)' :( can you show me your codes? :( please
@HimBhavsar4 жыл бұрын
use client.Connect(txtHost.Text, Int32.Parse(txtPort.Text)); in Client Connect button Click Event
@peteriscirksis6 жыл бұрын
How to make it so that there can be multiple users at once right now if I open new client and connect the chat only works that the client that sends only sees what it wrote
@diabelli4life7 жыл бұрын
First of all thanks a lot for this amazing tutorial, everything is running just fine....I was just wondering if it is possible to use the "server part" to connect to another device that acts as a client. I've been trying this all day long with no results. One of the main issues is that when I try to change the IP Address in the Server Form to the IP of the Client device I always get this exception: "the requested address is not valid in its context", can somebody please help me? :)
@foxlearn7 жыл бұрын
Do you mean that the server can connect to any computer on the listening port?
@diabelli4life7 жыл бұрын
yeap, actually I have a computer that acts as a server, and a camera (a special camera that read licence plates) that is able to send messages through TCP protocol. So my camera is acting as the client. Bassically I need to stablish a conection between both of them. In the server application I feed the camera's IP address, and that's when the exception occurs. I have disabled firewall, I have tried opening different ports others than 8910, for instance the 5555, 9889, etc. But nothing seems to work :( .... any ideas? Thanks again in advance
@georgesalinas43497 жыл бұрын
Hi, is there any way to calculate the rate of the packets or bits being sent from client to server and display that on the interface? like packets/sec or Kbits/sec rate. thanks
@hungdoan94193 жыл бұрын
help me: "An unhandled exception of type 'System.FormatException' occurred in mscorlib.dll Additional information: Input string was not in a correct format."
@muhammedkoka20795 жыл бұрын
useful
@foxlearn5 жыл бұрын
Thank you !
@sanglelinh9957 жыл бұрын
Can you help me? When I click on Start button this code is not correct " System.Net.IPAddress ip = new System.Net.IPAddress(long.Parse(txtip.Text));" An unhandled exception of type 'System.FormatException' occurred in mscorlib.dll Additional information: Input string was not in a correct format. How I can fix it? Please!
@cloneyang01287 жыл бұрын
Go back to check 9:17 and you will see the reason (code changed)
@icydeath117 жыл бұрын
why does the code change tho? I have the same problem and mine isnt changing in half a frame like yours did.
@007smegol7 жыл бұрын
I have the same problem. Has anyone been able to fix this?
@007smegol7 жыл бұрын
Has anyone been able to fix this?
@angelmoroyoqui52657 жыл бұрын
i use this: IPAddress ip = new IPAddress(BitConverter.GetBytes(BitConverter.ToInt32(IPAddress.Parse(txtHost.Text).GetAddressBytes(), 0))); but the program dont send the message :/
Can you tell me why this line is incorrect? System.Net.IPAddress ipaddress = new System.Net.IPAddress(long.Parse(txtHost.Text));
@PathsFinder35 жыл бұрын
@@henrywang9446 I don't know why, but it's because of the "new". for some reason you don't need to create an instance =S
@user-ic1sh7wu8j5 жыл бұрын
Thank you a Lot! This was needed!!!
@vorapobautomation97604 ай бұрын
Why the IP must be 127.0.0.1 and port number 8910 ?
@sudhirkumar-xu7lp5 жыл бұрын
I am getting error as :- Input string was not in a correct format. An unhandled exception of type 'System.FormatException' occurred in mscorlib.dll , while initializing IPAddress. When parsing txtHost.Text to long then it is throwing exception.
@foxlearn5 жыл бұрын
I think you miss something. Please check your code again. thank you !
@mahiracar63642 жыл бұрын
hello dear writers ı had downloaded your dll files but tcp server function has problem. can not convert from string to parse which given ip adress in text box .solved ip adress appointed in code form load . but this time lose so benefitted for me . thax alot
@evo788296 жыл бұрын
Thank you so much about your demo example. Could you teach me how to send message from Server to Client? Thanks a lot again~
@foxlearn6 жыл бұрын
OK. Thank you for your suggestion !
@technologybeat11865 жыл бұрын
how Server send message to Client ??
@tenmamico4 жыл бұрын
how to fix in btnSend_click client.WriteLineAndGetReply(txtMessage.Text, TimeSpan.FromSeconds(3)); System.Exception: 'Cannot send data to a null TcpClient (check to see if Connect was called)'
@thuannguyen82484 жыл бұрын
How to fix it, help me.
@justin232623 жыл бұрын
@@thuannguyen8248 làm được phần đó chưa bạn?
@thuannguyen82483 жыл бұрын
@@justin23262 Rồi bạn
@justin232623 жыл бұрын
@@thuannguyen8248 thay đổi code chỗ đấy như thế nào để hết bị lỗi bạn, bạn giúp mình được không?
@dipintigupta9777 Жыл бұрын
Sir, i wanna ssl/tls connection with communicate
@guillaume84374 жыл бұрын
Hello, Thanks Fox Learn for this nice video with step by step explanation. Very clear! Does someone has an idea of the reason why on the block private void Form1_Load(object sender, EventArgs e) does not work for me? It says 0 reference. At this point, I put all the 4 server lines in public Form1() block just after InitializeComponent(); and it works. This Form1_Load should be called somewhere, right?
@guillaume84374 жыл бұрын
OK, after a few look around, I got this : Go to Designer > Right Click form > Properties > Events (little lightning symbol) > Check if Form1_Load is available next to Load.
@foxlearn4 жыл бұрын
That's great
@eceblog74542 жыл бұрын
Hi, In the server how we can get the connect client IP address and port number
@tonacody41006 жыл бұрын
How can i make a form with both function Send and Receive message, It is a server and a client both. I can run on any computer, input IP to send message, Can you give me some solutions or some demo xample. Many thank.
@davidreva17296 жыл бұрын
I want it too, please
@rootLocal105 жыл бұрын
use server.BroadcastLine
@nubhacker78524 жыл бұрын
Hello! I have a problem with the app. If I try to connect with friends, the app freezes and gives the error: "A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond". Can you help me please? Thanks!
@foxlearn4 жыл бұрын
This only work on local network, and don't forget to open your port in firewall
@wooshch6 жыл бұрын
The received message is difrent - it has some additional chart. If I send "1" I recive "1 " and lenght of this string is 2. How I can fix it?
@Alex-ABPerson6 жыл бұрын
There's probably a linebreak at the end.
@rupeshpatel2322977 жыл бұрын
hi i have question if you wanted to reply diffidently to particular message how can you do that? i am having problem detecting message string to something like time. it should detect add and reply to it time is something with zone and time period. my whole program is working if yo can fixed this and send it me on below addresss.it is one simple thing how can you detect the meassagestring like xxx and replyline to something zzzz from server
@HungPham-fl8py5 жыл бұрын
hi , i test your code carefully and check all information detailedly, i dont know why i still have an error "nullreferenceexception object reference not set to an instance of an object" in the line could you help me please :D ?
@ErnstStefanBruhn5 жыл бұрын
I had the same error, maybe because I only made the client part of the project, here is what I was missing to get it to work: private void btnConnect_Click(object sender, EventArgs e) { client = new SimpleTcpClient().Connect(txtHost.Text, Convert.ToInt32(txtPort.Text)); btnConnect.Enabled = false; }
@ralphlawrencedeverarillera98834 жыл бұрын
how do you remove trailing exclamation marks?
@정도현-r6b8 жыл бұрын
hi im korean little en.. sorry, My error is Client send button click : Cannot send data to a null TcpCilent(check to see if Connect was called) why error??
@foxlearn8 жыл бұрын
Hi, Please check your IP, Port again. Thanks
@abdellah-ia8 жыл бұрын
+정도현, hi amigo, you right. there is a line not shown in a video.it is located in the connect_button_click { connect_button.Enable = false; client.Connect(hostTextBox.Text, Convert.ToInt32(portTextBox.Text)); } should work, don't forget to correct the IP address format, it s not shown in the video too. is not IPAddress(long.Parse()); it s directly IPAddress.Parse(); hope it helped.
@maltewerner24827 жыл бұрын
This only works on my pc not in the network can somebody help
@Inforcer2754 жыл бұрын
I am using .NetCore in WPF and on my screen is says:"CS1660 Cannot convert anonymous method to type 'MethodInvoker' because it is not a delegate type". It´s in the method Server_DataReceived. Can anyone help me?
@foxlearn4 жыл бұрын
Try to remove Invoker, just copy code inside invoker block
@Inforcer2754 жыл бұрын
@@foxlearn Thx can you use the SimpleTcp package to send files between the server and the clients? If it´s the case how does it work?
@Saturno1.4.37 жыл бұрын
en the client i have this problem here theClient.WriteLineAndGetReply(txtMessage.Text,TimeSpan.FromSeconds(3)); show this message 'Cannot send data to a null TcpClient (check to see if Connect was called)'
@justin232623 жыл бұрын
do you have solution for that?
@cyd0c5058 жыл бұрын
Can I use it with non-local ip, like my friends' ? (Sorry for my Eng)
@foxlearn8 жыл бұрын
Yes, Input your real ip, then you can play
@thecauliflower49826 жыл бұрын
Hello, I got a problem at the IP address: When my program runs I get this exception: 'Input string was not in a correct format.' . Can you help me with that?
@silvileblanc37635 жыл бұрын
me too...
@kiritoyan082 жыл бұрын
you did not include the code for Connect button in the video and the code for Start button has an error
@ManojYadwad27 жыл бұрын
Client form connect button is incomplete or there is some error in send button in client side. The error says that "Cannot sent data to null TcpClient.(check to see if connect was called).
@JohnSmith-ed1sr7 жыл бұрын
you have to start it in the right order, follow the video exactly, make sure you are starting the server and client in the correct order.
@Vietnamcamping897 жыл бұрын
"server.Start(ip, Convert.ToInt32(txtPort.Text));" We got am error "Input string was not in a correct format" What happen :(?
@elementalwattson6 жыл бұрын
you don't need to convert port value to int.
@muhammadaasimsoomro49715 жыл бұрын
Here ist the missing code for "btnConnect_click": client.Connect(txtHost.Text, Convert.ToInt32(txtPort.Text));
@basemabdellatiff52135 жыл бұрын
IPAddress ip = IPAddress.Parse(HostTextBox.Text); // Using system.net
@cuongnp_fptedu38415 жыл бұрын
How to send messenger from Server to multi clients? Can you help me? Thanks you a lot!
@foxlearn5 жыл бұрын
You can use Signalr
@swaq6197 жыл бұрын
this work only in localhost? i need what i use with everybody
@dbotdev40697 жыл бұрын
You need to portforward it
@abdulsalam60716 жыл бұрын
I have problem in btnStart in line : System.Net.IPAddress ip=new System.Net.IPAddress(Long.Parse(txtHost.Text)); the problem is: Input string was not in a correct format. Plz help me ..
@mostafatehrani36626 жыл бұрын
remove (New)
@hungdoan94193 жыл бұрын
@@mostafatehrani3662 "System.Net.IPAddress ip = System.Net.IPAddress(long.Parse(txthost.Text));" can't OK
@DannaxOfficial4 жыл бұрын
Can you make a video on how to do this without the nuget package? I'd like to know how that works thoroughly.
@foxlearn4 жыл бұрын
OK. Thank you for your suggestion. I'll upload soon !
@xagareymeyer45657 жыл бұрын
Mine doesn't print out to the 'chat box' or status box. It does print on the server's status box
@aliffnabil55424 жыл бұрын
does anyone know how to make it that i can connect to the server using another computer???
@justin232623 жыл бұрын
when I click Send, the server received nothing, can anyone help me?
@TheMr9026 жыл бұрын
Hey, i have a question. I was wondering if you can get the Ip address of the client that is sending the messages, and if yes, can you give me the code to it, or help me do this? thanks a lot in advanced
@foxlearn6 жыл бұрын
Yes, You can. I'll upload video as soon as possible
@TheMr9026 жыл бұрын
thank you so much!!
@TheMr9026 жыл бұрын
i have tried a lot of different commands, one of them being this : EndPoint ipi = client.TcpClient.Client.RemoteEndPoint; string ipe = ipi.ToString(); Console.WriteLine(ipe); it does not matter what command i trie to put, i get null excelption, like : SimpleTCP.SimpleTcpClient.TcpClient.**get** returned null. I know you said that you are gonna put a video as soon as possible, and i thank you for that, but i just wanted o give you a little bit of context, maybe it will help you. thank you again
@justin232623 жыл бұрын
why I cannot send message to server?
@TREmreprogaming7 жыл бұрын
OMG thanks god there was a russian guys and his video was 4parts x 10 mins and there was no exp.
@TREmreprogaming4 жыл бұрын
@Philipp p how can i help you?
@Confety6 жыл бұрын
Mejor pongo en el Load para que se auto conecte? Se puede?
@ocelotlocelotl6 жыл бұрын
si se puede, pero te dará error al abrir la aplicación si el servidor no se esta ejecutando, lo que puedes hacer es incluir las lineas en un try, catch y un boton de conectar, o intentar conectarte cada determinado tiempo.
@rupeshpatel2322977 жыл бұрын
can you make tcp /ip multiple client per server application.server should able to talk with each client differently by selecting their name
@mingosutu4 жыл бұрын
did it work?
@foxlearn4 жыл бұрын
Yes
@warmice82654 жыл бұрын
How can i find IP ADDRESS and PORT ? Thanks !!!
@flyrkr39374 жыл бұрын
this is your ip and a port that you need to enable on your router settings
@林國善8 жыл бұрын
How the server sends a message to the client? plz help me thx.
@foxlearn8 жыл бұрын
OK. Thank you for your suggestion. I'll make soon
@philipm18968 жыл бұрын
林國善 server.broadcastLine("hello");
@林國善8 жыл бұрын
thank u so much :).
@nishanegi25256 жыл бұрын
Is this application for multiple clients
@foxlearn6 жыл бұрын
Yes
@nishanegi25256 жыл бұрын
@@foxlearn then Y it's not working for multiple clients?
@foxlearn6 жыл бұрын
You should config local ip
@nishanegi25256 жыл бұрын
@@foxlearn when I click on send button then it's showing exception
@foxlearn6 жыл бұрын
Please turn off your firewall, change another port. ip host is your computer ip
@shubhamsinha3738 жыл бұрын
thankyou
@foxlearn8 жыл бұрын
Thank you so much
@danms65868 жыл бұрын
Hey Fox Learn, i have a problem, when i press the buton "Start" the form application stopped working, i don't know why, here is a photo with my problem, imgur.com/a/lAI8c , can you help me? Thanks.
@cyberlacs5 жыл бұрын
I am trying to communicate with this IP but it is giving error Ip: 192.168.1.56 is giving error here. port: 8080 When I open the CMD and ping 192.168.1.56 the CMD gives pig correctly. How to correct the error.
@foxlearn5 жыл бұрын
You should open port 8080 or change another port
@oskiGoiz6 жыл бұрын
Minuto 9:17 desaparece "new"... why?
@foxlearn6 жыл бұрын
What do you mean. Can you describe more details
@oskiGoiz6 жыл бұрын
@@foxlearn Line 41, min 9:16, you are using "... = new System.Net...", later in min 9:17, unappear the word "new"... it's like magic
@HappyJCGamerz4 жыл бұрын
why when i send a message does it then infinitely loop my message
@foxlearn4 жыл бұрын
please check your code again. i think you miss something
@7Rossik6 жыл бұрын
How do I send a data packet rather than one value? Thanks