Besatzung wird gespeichert
This commit is contained in:
@@ -15,6 +15,18 @@ namespace SanSystem
|
||||
public FrmAktuelleBesatzung()
|
||||
{
|
||||
InitializeComponent();
|
||||
if(Global.Instance.AktuelleBesatzung != string.Empty)
|
||||
{
|
||||
string[] besatzung = Global.Instance.AktuelleBesatzung.Split('/');
|
||||
if(besatzung.Length > 0)
|
||||
{
|
||||
txt_vorarbeiter.Text = besatzung[0];
|
||||
if(besatzung.Length > 1)
|
||||
{
|
||||
txt_nacharbeiter.Text = besatzung[1];
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void btn_ok_Click(object sender, EventArgs e)
|
||||
|
||||
Reference in New Issue
Block a user