Made changes to support Q/A Process to the SourceSafe Update form.
This commit is contained in:
parent
fcee3fae8d
commit
a176cc7e0d
@ -462,6 +462,7 @@ namespace Sync
|
||||
Font fntNormal = new Font("Arial", 10, FontStyle.Regular);
|
||||
rtb.Font = fntNormal;
|
||||
Font fntBold = new Font("Arial", 12, FontStyle.Bold);
|
||||
Font fntWing = new Font("Wingdings 2", 11, FontStyle.Regular);
|
||||
Font fntItalic = new Font("Arial", 11, FontStyle.Italic);
|
||||
Font fntBoldItalic = new Font("Arial", 14, FontStyle.Bold | FontStyle.Italic);
|
||||
StringBuilder sb = new StringBuilder();
|
||||
@ -481,6 +482,9 @@ namespace Sync
|
||||
AddText(rtb, fntBoldItalic, "*\tThis change includes changes to PROMSFixes.SQL\r\n\twhich must be loaded into the databases.\r\n\r\n", Color.Red);
|
||||
AddText(rtb, fntNormal, "\r\n\r\n", Color.Black);
|
||||
}
|
||||
sb.Append("\r\nInternal Data Fixes:\r\n\r\n");
|
||||
AddText(rtb, fntBold, "Internal Data Fixes:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n\r\n\r\n",Color.Magenta);
|
||||
sb.Append("Code Changes:\r\n\r\n");
|
||||
AddText(rtb, fntBold, "Code Changes:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n");
|
||||
@ -505,21 +509,27 @@ namespace Sync
|
||||
}
|
||||
}
|
||||
sb.Append("\r\nInternal Release:\r\n\r\n");
|
||||
sb.Append("\r\nExternal Release:\r\n\r\n");
|
||||
sb.Append("\r\nGeneric External Release:\r\n\r\n");
|
||||
sb.Append("\r\nPlant Specific Information for Release Letter:\r\n\r\n");
|
||||
sb.Append("\r\nTesting Performed:\r\n\r\n");
|
||||
sb.Append("\r\nTesting Requirements:\r\n\r\n");
|
||||
sb.Append("\r\nManual Changes/Additions:\r\n\r\n");
|
||||
sb.Append("\r\nChanges/Additions to User Documentation:\r\n\r\n");
|
||||
|
||||
AddText(rtb, fntNormal, "\r\n");
|
||||
AddText(rtb, fntBold, "Internal Release:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n\r\n\r\n");
|
||||
AddText(rtb, fntBold, "External Release:");
|
||||
AddText(rtb, fntBold, "Generic External Release:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n\r\n\r\n");
|
||||
AddText(rtb, fntBold, "Plant Specific Information for Release Letter:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n\r\n\r\n");
|
||||
AddText(rtb, fntBold, "Testing Performed:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n\r\n\r\n");
|
||||
AddText(rtb, fntBold, "Testing Requirements:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n\r\n\r\n");
|
||||
AddText(rtb, fntBold, "Manual Changes/Additions:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n");
|
||||
AddText(rtb, fntWing, "\x51\x52\xA3");
|
||||
AddText(rtb, fntNormal, " Sample Checkboxes");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n");
|
||||
AddText(rtb, fntBold, "Changes/Additions to User Documentation:");
|
||||
AddText(rtb, fntNormal, "\r\n\r\n");
|
||||
try
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user