BGE – phone list edit support

For BGE
BGE – phone list support
BGE – account for phone list size when paginating
BGE – phone list support & fixes for auto Table of Contents
This commit is contained in:
2014-05-12 15:46:00 +00:00
parent b4a055327a
commit c29bec4903
9 changed files with 1076 additions and 715 deletions

View File

@@ -360,6 +360,9 @@ namespace VEPROMS
//end add new applicability stuff
lblProcSetRev.Visible = ppRTxtProcSetRev.Visible = _DocVersionConfig.MyDocVersion.MyDocVersionInfo.ActiveFormat.MyStepSectionPrintData.UseXtraRevNumber;
_Initializing = false;
// the phone list button is only visible if the format has the print/phonelist format flag.
btnPhoneList.Visible = _DocVersionConfig.MyDocVersion.MyDocVersionInfo.ActiveFormat.PlantFormat.FormatData.SectData.PrintPhoneList;
}
// The following code was added to fix Bug B2013-117
void ppTxtBxPDFLoc_TextChanged(object sender, EventArgs e)
@@ -1064,6 +1067,12 @@ namespace VEPROMS
bsApples.DataSource = _Apples;
}
}
private void btnPhoneList_Click(object sender, EventArgs e)
{
dlgPhoneList dlgPL = new dlgPhoneList(_DocVersionConfig);
dlgPL.ShowDialog();
}
}
[XmlRoot("Slave")]