gesamtlänge wird erfasst

This commit is contained in:
HuskyTeufel
2020-06-25 16:24:05 +02:00
parent de5af70dd0
commit d9431ef400
26 changed files with 792 additions and 107 deletions

View File

@@ -0,0 +1,40 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace SanSystem
{
public partial class FrmGetDataFromBluelight : Form
{
public FrmGetDataFromBluelight()
{
InitializeComponent();
}
private void FrmGetDataFromBluelight_Load(object sender, EventArgs e)
{
try
{
File.Copy(@"\\192.168.2.248\samp01\1", "./daten.csv", false) ;
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
Debugger.Break();
}
private void FrmGetDataFromBluelight_Shown(object sender, EventArgs e)
{
}
}
}