vergessene commit

This commit is contained in:
Husky
2018-07-21 12:24:23 +02:00
parent 20388f5603
commit 53fa3789f2
28 changed files with 307 additions and 14 deletions

View File

@@ -11,8 +11,14 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class FrmKalibrierungFestlegung : Form
{
/// <summary>
///
/// </summary>
public FrmKalibrierungFestlegung(List<Inspektionsobjekt> inspektionsobjekts)
{
InitializeComponent();

View File

@@ -11,8 +11,14 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class FrmNewProjekt : Form
{
/// <summary>
///
/// </summary>
public FrmNewProjekt()
{
InitializeComponent();

View File

@@ -12,6 +12,9 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class FrmSelectMassenDate : Form
{

View File

@@ -10,21 +10,39 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class FrmSelectNewSan : Form
{
/// <summary>
///
/// </summary>
public event EventHandler AddInlinerClicked;
/// <summary>
///
/// </summary>
public event EventHandler AddSchachtAnbindungClicked;
/// <summary>
///
/// </summary>
protected virtual void OnAddSchachtAnbindungClicked(EventArgs e)
{
EventHandler handler = AddSchachtAnbindungClicked;
if (handler != null) handler(this, e);
}
/// <summary>
///
/// </summary>
protected virtual void OnAddInlinerClicked(EventArgs e)
{
EventHandler handler = AddInlinerClicked;
if (handler != null) handler(this, e);
}
/// <summary>
///
/// </summary>
public FrmSelectNewSan()
{
InitializeComponent();

View File

@@ -17,7 +17,9 @@ using Syncfusion.Windows.Forms.Chart;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class UCInliner : UserControl
{
enum TabPages
@@ -29,6 +31,10 @@ namespace SanSystem
string destinationPath = string.Empty;
UCLinerGrundlagen UCLinerGrundlagen = null;
List<string> filenames = new List<string>();
/// <summary>
///
/// </summary>
/// <param name="san"></param>
public UCInliner(InlinerSanierung san)
{
InitializeComponent();
@@ -143,7 +149,7 @@ namespace SanSystem
FtpClient newClient = null;
client.Dispose();
FtpClient newclient = null;
//FtpClient newclient = null;
foreach (string file in filenames)
{
newClient = new FtpClient("192.168.250.2");
@@ -166,7 +172,7 @@ namespace SanSystem
}
catch (TimeoutException ex)
{
MessageBox.Show("Die anlage reagiert nicht!");
MessageBox.Show("Die anlage reagiert nicht!\n"+ex.Message);
}
}

View File

@@ -11,16 +11,28 @@ using KlassenBIB;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class UCLinerGrundlagen : UserControl
{
InlinerSanierung inliner = null;
/// <summary>
///
/// </summary>
public List<Inspektionsobjekt> inspektionsobjekts = null;
/// <summary>
///
/// </summary>
/// <param name="inliner"></param>
public UCLinerGrundlagen(InlinerSanierung inliner)
{
InitializeComponent();
this.inliner = inliner;
}
/// <summary>
///
/// </summary>
public UCLinerGrundlagen()
{
InitializeComponent();

View File

@@ -13,6 +13,9 @@ using System.IO;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class UCSchachtanbindung : UserControl
{
SchachtAnbindung schacht = null;

View File

@@ -1,5 +1,8 @@
namespace SanSystem
{
/// <summary>
///
/// </summary>
partial class frmMain
{
/// <summary>

View File

@@ -16,9 +16,14 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class frmMain : Form
{
/// <summary>
///
/// </summary>
public frmMain()
{
InitializeComponent();

View File

@@ -14,11 +14,17 @@ using Database;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class frmObjektEdit : Form
{
Inspektionsobjekt inspektionsobjekt = null;
/// <summary>
///
/// </summary>
/// <param name="inspektion"></param>
public frmObjektEdit(Inspektionsobjekt inspektion)
{
InitializeComponent();

View File

@@ -15,12 +15,18 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class frmObjekteList : Form
{
private List<Inspektionsobjekt> inspektionsobjekte;
ObjecteListSetting objecteListSetting = new ObjecteListSetting();
/// <summary>
///
/// </summary>
/// <param name="streetname"></param>
private void loadObjekte(string streetname)
{
@@ -63,7 +69,10 @@ namespace SanSystem
}
return true;
}
/// <summary>
///
/// </summary>
/// <param name="streetname"></param>
public frmObjekteList(string streetname)
{
InitializeComponent();

View File

@@ -11,8 +11,14 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class frmProjektList : Form
{
/// <summary>
///
/// </summary>
public frmProjektList()
{
InitializeComponent();

View File

@@ -12,10 +12,15 @@ using System.Windows.Forms;
namespace SanSystem
{
/// <summary>
///
/// </summary>
public partial class frmStrassenList : Form
{
BindingSource bs = new BindingSource();
/// <summary>
///
/// </summary>
public frmStrassenList()
{
InitializeComponent();