removed document cover sheet, improvements to Title Page Use classification box

fix to keep text box height at a fixed size
This commit is contained in:
Kathy Ruffing 2016-07-19 14:10:13 +00:00
parent 96e8d2d87a
commit 523a767a49
3 changed files with 1 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -71,6 +71,7 @@ namespace VEPROMS
tb.Rtf = sb.ToString();
tb.Location = new Point((int)fld.x * 2, (int)fld.y * 2);
tb.Size = new Size((int)fld.width * 2, (int)fld.height * 2);
tb.MinimumSize = new Size((int)fld.width * 2, (int)fld.height * 2);
tb.Visible = true;
this.panelPSI.Controls.Add(tb);
maxx = ((int)fld.x * 2 + (int)fld.width * 2) > maxx ? ((int)fld.x * 2 + (int)fld.width * 2) : maxx;