- Fixed bugs in DataEntry-Munich3 forms

- Troubleshooting camera detection
This commit is contained in:
Milan Hanajik
2014-07-29 19:25:13 +02:00
parent 8c83965315
commit 4bcffdc3a9
8 changed files with 543 additions and 99 deletions
@@ -307,7 +307,14 @@ namespace TBF.BenchControl
{
foreach (var cmpnt in components)
{
if (cmpnt is ComponentBase) (cmpnt as ComponentBase).GetProcedureParams(procedure);
if (cmpnt is ComponentBase)
{
if (cmpnt.Cfg.Name.Equals("ROI2"))
{
int a = 5;
}
(cmpnt as ComponentBase).GetProcedureParams(procedure);
}
}
}