vergessene commit
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -11,8 +11,14 @@ using System.Windows.Forms;
|
||||
|
||||
namespace SanSystem
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class FrmNewProjekt : Form
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public FrmNewProjekt()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
@@ -12,6 +12,9 @@ using System.Windows.Forms;
|
||||
|
||||
namespace SanSystem
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class FrmSelectMassenDate : Form
|
||||
{
|
||||
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -13,6 +13,9 @@ using System.IO;
|
||||
|
||||
namespace SanSystem
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class UCSchachtanbindung : UserControl
|
||||
{
|
||||
SchachtAnbindung schacht = null;
|
||||
|
||||
3
SanSystem/frmMain.Designer.cs
generated
3
SanSystem/frmMain.Designer.cs
generated
@@ -1,5 +1,8 @@
|
||||
namespace SanSystem
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
partial class frmMain
|
||||
{
|
||||
/// <summary>
|
||||
|
||||
@@ -16,9 +16,14 @@ using System.Windows.Forms;
|
||||
|
||||
namespace SanSystem
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class frmMain : Form
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public frmMain()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -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();
|
||||
|
||||
@@ -11,8 +11,14 @@ using System.Windows.Forms;
|
||||
|
||||
namespace SanSystem
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public partial class frmProjektList : Form
|
||||
{
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
public frmProjektList()
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user