Files
Mapo-IOB-WIN/Test-Beckhoff/Form1.cs
T
2021-11-02 15:57:58 +01:00

27 lines
563 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Test_Beckhoff
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
//var myADS = new ADS("local", 851);
var myADS = new ADS("5.97.72.66.1.1", 851);
}
}
}