mirror of
https://github.com/DaKerboul/perun.git
synced 2026-08-09 18:05:40 +02:00
Added command line support for srs and lotatc
This commit is contained in:
@@ -48,7 +48,24 @@ namespace Perun_v1
|
|||||||
con_txt_dcs_instance.Text = args[2];
|
con_txt_dcs_instance.Text = args[2];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (args.Length > 3)
|
||||||
|
{
|
||||||
|
// srs
|
||||||
|
if (args[3] != null)
|
||||||
|
{
|
||||||
|
con_txt_3rd_srs.Text = args[3];
|
||||||
|
con_check_3rd_srs.Checked = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (args.Length > 4)
|
||||||
|
{
|
||||||
|
// lotatc
|
||||||
|
if (args[4] != null)
|
||||||
|
{
|
||||||
|
con_txt_3rd_lotatc.Text = args[4];
|
||||||
|
con_check_3rd_lotatc.Checked = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public form_Main()
|
public form_Main()
|
||||||
|
|||||||
Reference in New Issue
Block a user