You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
using HybirdFrameworkDriver.TcpServer;
|
|
|
|
namespace WinFormStarter;
|
|
|
|
public partial class Form2 : Form
|
|
{
|
|
|
|
private Server _server;
|
|
public Form2(Server server)
|
|
{
|
|
_server = server;
|
|
InitializeComponent();
|
|
_server.Start(9000);
|
|
|
|
new FrmPLCConnect().Show();
|
|
}
|
|
} |