premetto che forse è la prima volta che provo a fare una winform ma cmq ho provato a scrivere questo semplice form con un'unica richtextbox e il codice per lanciare una comunicazione TCP_IP.
Sulla comunicazione TCP_IP non ci sono problemi ma quando provo a loggare i dati che ricevo sulla rich ottentgo questo errore
Operazione cross-thread non valida: è stato eseguito l'accesso al controllo 'LogRichText' da un thread diverso da quello da cui è stata eseguita la creazione.
Come posso risolvere questa cosa?
vi sposto il codice della win form
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Net.Sockets;
using System.Threading;
using System.Net;
namespace TCP_SIMULATE
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public static string _addText = "";
private void Form1_Load(object sender, EventArgs e)
{
Server tcpServer = new Server(LogRichText);
}
class Server
{
private TcpListener tcpListener;
private Thread listenThread;
object _richText;
public Server(object richText)
{
this.tcpListener = new TcpListener(IPAddress.Any, 5000);
this.listenThread = new Thread(new ThreadStart(ListenForClients));
this.listenThread.Start();
_richText = richText;
}
private void ListenForClients()
{
this.tcpListener.Start();
while (true)
{
//blocks until a client has connected to the server
TcpClient client = this.tcpListener.AcceptTcpClient();
//create a thread to handle communication
//with connected client
Thread clientThread = new Thread(new ParameterizedThreadStart(HandleClientComm));
clientThread.Start(client);
}
}
private void HandleClientComm(object client)
{
TcpClient tcpClient = (TcpClient)client;
NetworkStream clientStream = tcpClient.GetStream();
byte[] message = new byte[4096];
int bytesRead;
while (true)
{
bytesRead = 0;
try
{
//blocks until a client sends a message
bytesRead = clientStream.Read(message, 0, 4096);
}
catch
{
//a socket error has occured
break;
}
if (bytesRead == 0)
{
//the client has disconnected from the server
break;
}
//message has successfully been received
ASCIIEncoding encoder = new ASCIIEncoding();
//Console.WriteLine(encoder.GetString(message, 0, bytesRead));
((RichTextBox)_richText).Text += encoder.GetString(message, 0, bytesRead);
tcpClient.Client.Send(message);
}
tcpClient.Close();
}
}
}
}