check for NULL in displaying the Procedure Info dialog
Logic to support pagelist tokens inside conditional Procedure Information pagelist tokens
This commit is contained in:
@@ -84,7 +84,7 @@ namespace VEPROMS
|
||||
this.Controls.Add(cb);
|
||||
}
|
||||
}
|
||||
if (psiDialogDef.ButtonsOnBottom.ToUpper() == "NO")
|
||||
if (psiDialogDef.ButtonsOnBottom == null || psiDialogDef.ButtonsOnBottom.ToUpper() == "NO")
|
||||
{
|
||||
btnOk.Location = new Point(maxx+20, 30);
|
||||
btnCancel.Location = new Point(maxx + 20, 60);
|
||||
|
Reference in New Issue
Block a user