gesamtlänge wird erfasst
This commit is contained in:
40
SanSystem/FrmGetDataFromBluelight.cs
Normal file
40
SanSystem/FrmGetDataFromBluelight.cs
Normal 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)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user