Update IOB BASE:

- aggiunto InitializeAsync
- gestione override x ogni IOB
This commit is contained in:
Samuele Locatelli
2026-01-23 10:22:00 +01:00
parent 02bdc71a22
commit fa976dd2bb
29 changed files with 714 additions and 82 deletions
+5 -1
View File
@@ -21,7 +21,7 @@ namespace IOB_WIN_SQL
/// <summary>
/// carica IOB richiesto
/// </summary>
protected override void loadIobType()
protected override async Task loadIobType()
{
if (IOBConfFull != null)
{
@@ -54,6 +54,10 @@ namespace IOB_WIN_SQL
btnStart.Enabled = false;
break;
}
if (!await iobInitAsync())
{
return;
}
UpdateDisplTypeIobSel();
}
}