This commit is contained in:
parent
9ee8986e50
commit
722e41b25e
@ -247,6 +247,7 @@ namespace VEPROMS
|
||||
// Save whether we should display the default values on this property page
|
||||
Settings.Default.ShowDefaultFolderProp = ppCbShwDefSettings.Checked;
|
||||
Settings.Default.Save();
|
||||
_FolderConfig.MyFolder.Save().Dispose();
|
||||
this.Close();
|
||||
}
|
||||
|
||||
|
@ -38,17 +38,18 @@ namespace VEPROMS
|
||||
this.Text = string.Format("{0} {1} Properties", procedureConfig.Number, procedureConfig.Title);
|
||||
}
|
||||
|
||||
private void ppBtnOK_Click(object sender, EventArgs e)
|
||||
{
|
||||
DialogResult = DialogResult.OK;
|
||||
procedureConfigBindingSource.EndEdit();
|
||||
// Save Default settings for User
|
||||
//
|
||||
// Save whether we should display the default values on this property page
|
||||
Settings.Default.ShowDefaultProcedureProp = ppCbShwDefSettings.Checked;
|
||||
Settings.Default.Save();
|
||||
this.Close();
|
||||
}
|
||||
private void ppBtnOK_Click(object sender, EventArgs e)
|
||||
{
|
||||
DialogResult = DialogResult.OK;
|
||||
procedureConfigBindingSource.EndEdit();
|
||||
// Save Default settings for User
|
||||
//
|
||||
// Save whether we should display the default values on this property page
|
||||
Settings.Default.ShowDefaultProcedureProp = ppCbShwDefSettings.Checked;
|
||||
Settings.Default.Save();
|
||||
_ProcedureConfig.MyProcedure.Save().Dispose();
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void ppBtnCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -16,6 +16,7 @@ namespace VEPROMS
|
||||
private string _DefaultFormatName = null;
|
||||
private bool _Initializing;
|
||||
private SectionConfig _SectionConfig;
|
||||
private Document _DocumentToDelete = null;
|
||||
|
||||
public frmSectionProperties(SectionConfig sectionConfig)
|
||||
{
|
||||
@ -47,17 +48,25 @@ namespace VEPROMS
|
||||
private void btnSectPropOK_Click(object sender, EventArgs e)
|
||||
{
|
||||
sectionConfigBindingSource.EndEdit();
|
||||
|
||||
// Save Default settings for User
|
||||
//
|
||||
// Save whether we should display the default values on this property page
|
||||
Settings.Default.ShowDefaultSectionProp = ppCbShwDefSettings.Checked;
|
||||
Settings.Default.Save();
|
||||
DialogResult = DialogResult.OK;
|
||||
_SectionConfig.MySection.Save().Dispose();
|
||||
// if there was a document to delete, do it.
|
||||
if (_DocumentToDelete != null)
|
||||
{
|
||||
Document.Delete(_DocumentToDelete.DocID);
|
||||
_DocumentToDelete = null;
|
||||
}
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void btnSectPropCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
_DocumentToDelete = null;
|
||||
sectionConfigBindingSource.CancelEdit();
|
||||
DialogResult = DialogResult.Cancel;
|
||||
this.Close();
|
||||
@ -87,7 +96,7 @@ namespace VEPROMS
|
||||
_Initializing = true;
|
||||
sectionConfigBindingSource.DataSource = _SectionConfig;
|
||||
|
||||
//formatInfoListBindingSource.DataSource = FormatInfoList.Get();
|
||||
|
||||
ppCmbxFormat.DataSource = null;
|
||||
ppCmbxFormat.DisplayMember = "FullName";
|
||||
ppCmbxFormat.ValueMember = "FullName";
|
||||
@ -122,9 +131,39 @@ namespace VEPROMS
|
||||
ppCmbxNumColumns.ValueMember = "EValue";
|
||||
ppCmbxNumColumns.SelectedIndex = -1;
|
||||
|
||||
_Initializing = false;
|
||||
if (!cbIsStepSection.Enabled) ppCmbxLibDocFill();
|
||||
_Initializing = false;
|
||||
}
|
||||
|
||||
private void ppCmbxLibDocFill()
|
||||
{
|
||||
_Initializing = true;
|
||||
bool isLib = _SectionConfig.MySection.MyContent.MyEntry.MyDocument.LibTitle != "";
|
||||
if (isLib)
|
||||
{
|
||||
ppBtnCvrtToLibDoc.Text = "Convert this Section To A Non-Library Document";
|
||||
lblLibraryDocument.Text = "Library Document";
|
||||
superTooltip1.SetSuperTooltip(this.ppBtnCvrtToLibDoc, new DevComponents.DotNetBar.SuperTooltipInfo("Convert To Non-Library Document", "", "This button will convert the current section from a library document to a non-library document",
|
||||
null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 76)));
|
||||
}
|
||||
else
|
||||
{
|
||||
ppBtnCvrtToLibDoc.Text = "Convert this to a Library Document";
|
||||
lblLibraryDocument.Text = "Select Library Document to Link";
|
||||
superTooltip1.SetSuperTooltip(this.ppBtnCvrtToLibDoc, new DevComponents.DotNetBar.SuperTooltipInfo("Convert To Library Document button", "", "This button will convert the current section to a library document, allowing it t" +
|
||||
"o be shared with other procedures.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 76)));
|
||||
}
|
||||
|
||||
DocumentInfoList LibDocList = DocumentInfoList.GetLibraries(true);
|
||||
for (int i = 0; i < LibDocList.Count; i++)
|
||||
{
|
||||
ppCmbxLibDoc.Items.Add(LibDocList[i].DocumentTitle);
|
||||
// see if this lib doc should be the selected index?
|
||||
if (isLib && (LibDocList[i].DocID == _SectionConfig.MySection.MyContent.MyEntry.MyDocument.DocID)) ppCmbxLibDoc.SelectedIndex = i;
|
||||
}
|
||||
_Initializing = false;
|
||||
}
|
||||
|
||||
#region General tab
|
||||
|
||||
/// <summary>
|
||||
@ -208,6 +247,31 @@ namespace VEPROMS
|
||||
ppCmbxFormat.SelectedIndex = -1; //reset to the default Format setting
|
||||
}
|
||||
|
||||
private void ppCmbxFormat_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_Initializing) return;
|
||||
if ((ppCmbxFormat.SelectedIndex != -1) && _DefaultFormatName != null && _DefaultFormatName.Equals(ppCmbxFormat.SelectedValue))
|
||||
{
|
||||
ppBtnDefaultFmt.Focus();
|
||||
ppBtnDefaultFmt.PerformClick();
|
||||
}
|
||||
ppBtnDefaultFmt.Visible = (ppCmbxFormat.SelectedValue != null);
|
||||
ppLblFormatDefault.Visible = ppCbShwDefSettings.Checked && ppBtnDefaultFmt.Visible;
|
||||
SetupPpCmbxSectionType();
|
||||
}
|
||||
|
||||
private void ppCmbxStyleSectionType_SelectedValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_Initializing) return;
|
||||
if (ppCmbxStyleSectionType.SelectedValue != null)
|
||||
_SectionConfig.SectionType = (int)(ppCmbxStyleSectionType.SelectedValue);
|
||||
}
|
||||
private void cbIsStepSection_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_Initializing) return;
|
||||
SetupPpCmbxSectionType();
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region Library Document tab
|
||||
@ -221,7 +285,76 @@ namespace VEPROMS
|
||||
{
|
||||
ProcessButtonClick(tiLibDoc, btnLibDocs);
|
||||
}
|
||||
private void ppBtnCvrtToLibDoc_Click(object sender, EventArgs e)
|
||||
{
|
||||
// If current section is library document, user selected to convert to non-library document. If
|
||||
// this is the case, data from lib doc must be copied to new document and the section must point
|
||||
// to id.
|
||||
if (ppBtnCvrtToLibDoc.Text.IndexOf("Non") > 0) // convert to a 'non' library.
|
||||
{
|
||||
ItemInfo ii = ItemInfo.Get(_SectionConfig.MySection.ItemID);
|
||||
DocumentInfo doclibinfo = ii.MyContent.MyEntry.MyDocument;
|
||||
|
||||
// if just one usage (this one), then just convert this to a non-library document. If there are more
|
||||
// than one usage, make a copy so that the rest of the usages still point to the library document.
|
||||
if (doclibinfo.DocumentEntryCount == 1)
|
||||
_SectionConfig.MySection.MyContent.MyEntry.MyDocument.LibTitle = null;
|
||||
else
|
||||
{
|
||||
// make new document with 'no' libtitle - use libtitle for the doc title. Then link this
|
||||
// to the item...
|
||||
Document doc = Document.MakeDocument(null, doclibinfo.DocContent, null, null);
|
||||
_SectionConfig.MySection.MyContent.MyEntry.MyDocument = doc;
|
||||
}
|
||||
ppCmbxLibDoc.Items.Clear();
|
||||
ppCmbxLibDoc.WatermarkEnabled = true;
|
||||
ppBtnCvrtToLibDoc.Text = "Convert this to a Library Document";
|
||||
superTooltip1.SetSuperTooltip(this.ppBtnCvrtToLibDoc, new DevComponents.DotNetBar.SuperTooltipInfo("Convert To Library Document button", "", "This button will convert the current section to a library document, allowing it t" +
|
||||
"o be shared with other procedures.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, false, new System.Drawing.Size(250, 76)));
|
||||
}
|
||||
// If current section is not a library document, the user selected the button to convert it to a
|
||||
// library document, to do this, just put 'text' into the 'LibTitle' property (that's what flags
|
||||
// it to be a library document.
|
||||
else
|
||||
{
|
||||
_SectionConfig.MySection.MyContent.MyEntry.MyDocument.LibTitle = _SectionConfig.MySection.MyContent.Text;
|
||||
// TODO: Kbr/Rhm - CSLA was not saving document (libtitle change) on higher level save. Delete following
|
||||
// line after this is fixed.
|
||||
_SectionConfig.MySection.MyContent.MyEntry.MyDocument.Save();
|
||||
// ppCmbxLibDocFill();
|
||||
ppCmbxLibDoc.Enabled = false;
|
||||
}
|
||||
}
|
||||
|
||||
private void ppCmbxLibDoc_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_Initializing) return;
|
||||
// see if this was NOT a library document. If it is not a library document, ask the user if
|
||||
// it should be linked, thus losing the original text/data.
|
||||
if (!(_SectionConfig.MySection.MyContent.MyEntry.MyDocument.LibTitle != ""))
|
||||
{
|
||||
if (ppCmbxLibDoc.SelectedIndex > -1)
|
||||
{
|
||||
if (MessageBox.Show("Linking to this library document will cause loss of data. Do you want to continue?", "Link", MessageBoxButtons.YesNo) == DialogResult.Yes)
|
||||
{
|
||||
_DocumentToDelete = _SectionConfig.MySection.MyContent.MyEntry.MyDocument;
|
||||
DocumentInfoList LibDocList = DocumentInfoList.GetLibraries(true);
|
||||
_SectionConfig.MySection.MyContent.MyEntry.MyDocument = Document.Get(LibDocList[ppCmbxLibDoc.SelectedIndex].DocID);
|
||||
}
|
||||
else
|
||||
{
|
||||
ppCmbxLibDoc.SelectedIndex = -1;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
// it already is a library document, just change usages...
|
||||
DocumentInfoList LibDocList = DocumentInfoList.GetLibraries(true);
|
||||
_SectionConfig.MySection.MyContent.MyEntry.MyDocument = Document.Get(LibDocList[ppCmbxLibDoc.SelectedIndex].DocID);
|
||||
}
|
||||
}
|
||||
#endregion
|
||||
|
||||
#region View Settings tab
|
||||
@ -289,32 +422,7 @@ namespace VEPROMS
|
||||
defaultSettingsVisiblity();
|
||||
}
|
||||
#endregion
|
||||
|
||||
private void ppCmbxStyleSectionType_SelectedValueChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_Initializing) return;
|
||||
if (ppCmbxStyleSectionType.SelectedValue != null)
|
||||
_SectionConfig.SectionType = (int)(ppCmbxStyleSectionType.SelectedValue);
|
||||
}
|
||||
|
||||
private void ppCmbxFormat_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_Initializing) return;
|
||||
if ((ppCmbxFormat.SelectedIndex != -1) && _DefaultFormatName != null && _DefaultFormatName.Equals(ppCmbxFormat.SelectedValue))
|
||||
{
|
||||
ppBtnDefaultFmt.Focus();
|
||||
ppBtnDefaultFmt.PerformClick();
|
||||
}
|
||||
ppBtnDefaultFmt.Visible = (ppCmbxFormat.SelectedValue != null);
|
||||
ppLblFormatDefault.Visible = ppCbShwDefSettings.Checked && ppBtnDefaultFmt.Visible;
|
||||
SetupPpCmbxSectionType();
|
||||
}
|
||||
|
||||
private void cbIsStepSection_CheckedChanged(object sender, EventArgs e)
|
||||
{
|
||||
if (_Initializing) return;
|
||||
SetupPpCmbxSectionType();
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
157
PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs
generated
157
PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs
generated
@ -132,6 +132,9 @@ namespace VEPROMS
|
||||
this.btnRmvCurBookMrk = new DevComponents.DotNetBar.ButtonX();
|
||||
this.btnSetBookMrk = new DevComponents.DotNetBar.ButtonX();
|
||||
this.infotabBookMarks = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.tabControlPanelLD = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.displayLibDocs = new Volian.Controls.Library.DisplayLibDocs();
|
||||
this.tabItemLibDocs = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.annotationSearch = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.navpaneResults = new DevComponents.DotNetBar.NavigationPane();
|
||||
this.navpanSrchRslts = new DevComponents.DotNetBar.NavigationPanePanel();
|
||||
@ -160,6 +163,7 @@ namespace VEPROMS
|
||||
this.searchTabControl.SuspendLayout();
|
||||
this.tabControlPanel2.SuspendLayout();
|
||||
this.panelEx3.SuspendLayout();
|
||||
this.tabControlPanelLD.SuspendLayout();
|
||||
this.annotationSearch.SuspendLayout();
|
||||
this.navpaneResults.SuspendLayout();
|
||||
this.navpanSrchRslts.SuspendLayout();
|
||||
@ -189,7 +193,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnHelp.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnHelp.Image = ((System.Drawing.Image)(resources.GetObject("btnHelp.Image")));
|
||||
this.btnHelp.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnHelp.ImagePaddingHorizontal = 8;
|
||||
this.btnHelp.ItemAlignment = DevComponents.DotNetBar.eItemAlignment.Far;
|
||||
this.btnHelp.Name = "btnHelp";
|
||||
@ -203,7 +206,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnHelpManual.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnHelpManual.Image = ((System.Drawing.Image)(resources.GetObject("btnHelpManual.Image")));
|
||||
this.btnHelpManual.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnHelpManual.ImagePaddingHorizontal = 8;
|
||||
this.btnHelpManual.Name = "btnHelpManual";
|
||||
this.btnHelpManual.Text = "User Manual";
|
||||
@ -212,7 +214,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnHelpAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnHelpAbout.Image = ((System.Drawing.Image)(resources.GetObject("btnHelpAbout.Image")));
|
||||
this.btnHelpAbout.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnHelpAbout.ImagePaddingHorizontal = 8;
|
||||
this.btnHelpAbout.Name = "btnHelpAbout";
|
||||
this.btnHelpAbout.Text = "About";
|
||||
@ -222,7 +223,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnHelpVWeb.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnHelpVWeb.Image = ((System.Drawing.Image)(resources.GetObject("btnHelpVWeb.Image")));
|
||||
this.btnHelpVWeb.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnHelpVWeb.ImagePaddingHorizontal = 8;
|
||||
this.btnHelpVWeb.Name = "btnHelpVWeb";
|
||||
this.btnHelpVWeb.Text = "Volian Web";
|
||||
@ -235,7 +235,6 @@ namespace VEPROMS
|
||||
this.office2007StartButton1.Cursor = System.Windows.Forms.Cursors.Hand;
|
||||
this.office2007StartButton1.HotTrackingStyle = DevComponents.DotNetBar.eHotTrackingStyle.Image;
|
||||
this.office2007StartButton1.Image = ((System.Drawing.Image)(resources.GetObject("office2007StartButton1.Image")));
|
||||
this.office2007StartButton1.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.office2007StartButton1.ImagePaddingHorizontal = 2;
|
||||
this.office2007StartButton1.ImagePaddingVertical = 2;
|
||||
this.office2007StartButton1.Name = "office2007StartButton1";
|
||||
@ -292,7 +291,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnNew.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnNew.Image = ((System.Drawing.Image)(resources.GetObject("btnNew.Image")));
|
||||
this.btnNew.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnNew.ImagePaddingHorizontal = 8;
|
||||
this.btnNew.Name = "btnNew";
|
||||
this.btnNew.SubItemsExpandWidth = 24;
|
||||
@ -303,7 +301,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnOpen.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnOpen.Image = ((System.Drawing.Image)(resources.GetObject("btnOpen.Image")));
|
||||
this.btnOpen.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnOpen.ImagePaddingHorizontal = 8;
|
||||
this.btnOpen.Name = "btnOpen";
|
||||
this.btnOpen.SubItemsExpandWidth = 24;
|
||||
@ -314,7 +311,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnSave.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnSave.Image = global::VEPROMS.Properties.Resources.Save;
|
||||
this.btnSave.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnSave.ImagePaddingHorizontal = 8;
|
||||
this.btnSave.Name = "btnSave";
|
||||
this.btnSave.SubItemsExpandWidth = 24;
|
||||
@ -325,7 +321,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnSaveAs.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnSaveAs.Image = global::VEPROMS.Properties.Resources.SaveAs;
|
||||
this.btnSaveAs.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnSaveAs.ImagePaddingHorizontal = 8;
|
||||
this.btnSaveAs.Name = "btnSaveAs";
|
||||
this.btnSaveAs.Text = "Save &As";
|
||||
@ -334,7 +329,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnPrint.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnPrint.Image = ((System.Drawing.Image)(resources.GetObject("btnPrint.Image")));
|
||||
this.btnPrint.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnPrint.ImagePaddingHorizontal = 8;
|
||||
this.btnPrint.Name = "btnPrint";
|
||||
this.btnPrint.SubItemsExpandWidth = 24;
|
||||
@ -345,7 +339,6 @@ namespace VEPROMS
|
||||
this.btnPrepare.BeginGroup = true;
|
||||
this.btnPrepare.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnPrepare.Image = ((System.Drawing.Image)(resources.GetObject("btnPrepare.Image")));
|
||||
this.btnPrepare.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnPrepare.ImagePaddingHorizontal = 8;
|
||||
this.btnPrepare.Name = "btnPrepare";
|
||||
this.btnPrepare.SubItemsExpandWidth = 24;
|
||||
@ -355,7 +348,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnAdmin.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnAdmin.Image = global::VEPROMS.Properties.Resources.Admin;
|
||||
this.btnAdmin.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnAdmin.ImagePaddingHorizontal = 8;
|
||||
this.btnAdmin.Name = "btnAdmin";
|
||||
this.btnAdmin.Text = "A&dministration";
|
||||
@ -365,7 +357,6 @@ namespace VEPROMS
|
||||
this.btnClose.BeginGroup = true;
|
||||
this.btnClose.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnClose.Image = ((System.Drawing.Image)(resources.GetObject("btnClose.Image")));
|
||||
this.btnClose.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnClose.ImagePaddingHorizontal = 8;
|
||||
this.btnClose.Name = "btnClose";
|
||||
this.btnClose.SubItemsExpandWidth = 24;
|
||||
@ -411,7 +402,6 @@ namespace VEPROMS
|
||||
this.btnOptions.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnOptions.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||
this.btnOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnOptions.Image")));
|
||||
this.btnOptions.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnOptions.ImagePaddingHorizontal = 8;
|
||||
this.btnOptions.Name = "btnOptions";
|
||||
this.btnOptions.SubItemsExpandWidth = 24;
|
||||
@ -423,7 +413,6 @@ namespace VEPROMS
|
||||
this.btnExit.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
|
||||
this.btnExit.Image = ((System.Drawing.Image)(resources.GetObject("btnExit.Image")));
|
||||
this.btnExit.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnExit.ImagePaddingHorizontal = 8;
|
||||
this.btnExit.Name = "btnExit";
|
||||
this.btnExit.SubItemsExpandWidth = 24;
|
||||
@ -522,7 +511,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnViewTypes.AutoExpandOnClick = true;
|
||||
this.btnViewTypes.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnViewTypes.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnViewTypes.ImagePaddingHorizontal = 8;
|
||||
this.btnViewTypes.Name = "btnViewTypes";
|
||||
this.btnViewTypes.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
|
||||
@ -534,7 +522,6 @@ namespace VEPROMS
|
||||
//
|
||||
// btnViewPrcStp
|
||||
//
|
||||
this.btnViewPrcStp.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnViewPrcStp.ImagePaddingHorizontal = 8;
|
||||
this.btnViewPrcStp.Name = "btnViewPrcStp";
|
||||
this.btnViewPrcStp.Text = "Procedure Steps";
|
||||
@ -542,7 +529,6 @@ namespace VEPROMS
|
||||
//
|
||||
// btnViewBckgnd
|
||||
//
|
||||
this.btnViewBckgnd.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnViewBckgnd.ImagePaddingHorizontal = 8;
|
||||
this.btnViewBckgnd.Name = "btnViewBckgnd";
|
||||
this.btnViewBckgnd.Text = "Background";
|
||||
@ -550,7 +536,6 @@ namespace VEPROMS
|
||||
//
|
||||
// btnViewDev
|
||||
//
|
||||
this.btnViewDev.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnViewDev.ImagePaddingHorizontal = 8;
|
||||
this.btnViewDev.Name = "btnViewDev";
|
||||
this.btnViewDev.Text = "Deviation";
|
||||
@ -568,7 +553,6 @@ namespace VEPROMS
|
||||
this.btnLckUlck.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnLckUlck.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnLckUlck.Image = ((System.Drawing.Image)(resources.GetObject("btnLckUlck.Image")));
|
||||
this.btnLckUlck.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnLckUlck.ImagePaddingHorizontal = 8;
|
||||
this.btnLckUlck.Name = "btnLckUlck";
|
||||
this.btnLckUlck.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
|
||||
@ -576,14 +560,13 @@ namespace VEPROMS
|
||||
this.btnSetLock,
|
||||
this.btnReleaseLck});
|
||||
this.superTooltip1.SetSuperTooltip(this.btnLckUlck, new DevComponents.DotNetBar.SuperTooltipInfo("Procedure Lock", "", "This will allow you to set or remove a lock on the current procedure. The button" +
|
||||
" tells you the current lock status.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
" tells you the current lock status.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
this.btnLckUlck.Text = "Unlocked";
|
||||
//
|
||||
// btnSetLock
|
||||
//
|
||||
this.btnSetLock.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnSetLock.Image = ((System.Drawing.Image)(resources.GetObject("btnSetLock.Image")));
|
||||
this.btnSetLock.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnSetLock.ImagePaddingHorizontal = 8;
|
||||
this.btnSetLock.Name = "btnSetLock";
|
||||
this.btnSetLock.Text = "Set a Lock";
|
||||
@ -593,7 +576,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnReleaseLck.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnReleaseLck.Image = ((System.Drawing.Image)(resources.GetObject("btnReleaseLck.Image")));
|
||||
this.btnReleaseLck.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnReleaseLck.ImagePaddingHorizontal = 8;
|
||||
this.btnReleaseLck.Name = "btnReleaseLck";
|
||||
this.btnReleaseLck.Text = "Release Lock";
|
||||
@ -611,7 +593,6 @@ namespace VEPROMS
|
||||
this.btnInsOvr.CanCustomize = false;
|
||||
this.btnInsOvr.Description = "Toggle Insert / Overwrite";
|
||||
this.btnInsOvr.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnInsOvr.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnInsOvr.ImagePaddingHorizontal = 8;
|
||||
this.btnInsOvr.Name = "btnInsOvr";
|
||||
this.btnInsOvr.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
|
||||
@ -624,7 +605,6 @@ namespace VEPROMS
|
||||
//
|
||||
// btnInsertMode
|
||||
//
|
||||
this.btnInsertMode.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnInsertMode.ImagePaddingHorizontal = 8;
|
||||
this.btnInsertMode.Name = "btnInsertMode";
|
||||
this.btnInsertMode.Text = "INS";
|
||||
@ -632,7 +612,6 @@ namespace VEPROMS
|
||||
//
|
||||
// btnOverstrikeMode
|
||||
//
|
||||
this.btnOverstrikeMode.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnOverstrikeMode.ImagePaddingHorizontal = 8;
|
||||
this.btnOverstrikeMode.Name = "btnOverstrikeMode";
|
||||
this.btnOverstrikeMode.Text = "OVR";
|
||||
@ -650,7 +629,6 @@ namespace VEPROMS
|
||||
this.btnEditView.CanCustomize = false;
|
||||
this.btnEditView.Description = "Toggle Edit / View Modes";
|
||||
this.btnEditView.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnEditView.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnEditView.ImagePaddingHorizontal = 8;
|
||||
this.btnEditView.Name = "btnEditView";
|
||||
this.btnEditView.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
|
||||
@ -661,7 +639,6 @@ namespace VEPROMS
|
||||
//
|
||||
// btnEditMode
|
||||
//
|
||||
this.btnEditMode.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnEditMode.ImagePaddingHorizontal = 8;
|
||||
this.btnEditMode.Name = "btnEditMode";
|
||||
this.btnEditMode.Text = "Edit";
|
||||
@ -669,7 +646,6 @@ namespace VEPROMS
|
||||
//
|
||||
// btnViewMode
|
||||
//
|
||||
this.btnViewMode.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnViewMode.ImagePaddingHorizontal = 8;
|
||||
this.btnViewMode.Name = "btnViewMode";
|
||||
this.btnViewMode.Text = "View";
|
||||
@ -688,12 +664,11 @@ namespace VEPROMS
|
||||
this.btnMarkPrevPos.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnMarkPrevPos.GlobalName = "SetBookMark";
|
||||
this.btnMarkPrevPos.Image = ((System.Drawing.Image)(resources.GetObject("btnMarkPrevPos.Image")));
|
||||
this.btnMarkPrevPos.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnMarkPrevPos.ImagePaddingHorizontal = 8;
|
||||
this.btnMarkPrevPos.Name = "btnMarkPrevPos";
|
||||
this.btnMarkPrevPos.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
|
||||
this.superTooltip1.SetSuperTooltip(this.btnMarkPrevPos, new DevComponents.DotNetBar.SuperTooltipInfo("Simple Bookmark", "", "Mark your current positon and/or jump to the previously marked position. Note th" +
|
||||
"at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
"at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
this.btnMarkPrevPos.Text = "BookMark";
|
||||
this.btnMarkPrevPos.Click += new System.EventHandler(this.btnMarkPrevPos_Click);
|
||||
//
|
||||
@ -710,12 +685,11 @@ namespace VEPROMS
|
||||
this.btnPrevPos.Enabled = false;
|
||||
this.btnPrevPos.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnPrevPos.Image = ((System.Drawing.Image)(resources.GetObject("btnPrevPos.Image")));
|
||||
this.btnPrevPos.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnPrevPos.ImagePaddingHorizontal = 8;
|
||||
this.btnPrevPos.Name = "btnPrevPos";
|
||||
this.btnPrevPos.PopupSide = DevComponents.DotNetBar.ePopupSide.Top;
|
||||
this.superTooltip1.SetSuperTooltip(this.btnPrevPos, new DevComponents.DotNetBar.SuperTooltipInfo("Simple Bookmark", "", "Mark your current positon and/or jump to the previously marked position. Note th" +
|
||||
"at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
"at markking the the current position will also add to the list of bookmarks", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
this.btnPrevPos.Text = "Previous Positon";
|
||||
this.btnPrevPos.Click += new System.EventHandler(this.btnPrevPos_Click);
|
||||
//
|
||||
@ -729,11 +703,10 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnGetRoVals.Enabled = false;
|
||||
this.btnGetRoVals.ForeColor = System.Drawing.Color.Black;
|
||||
this.btnGetRoVals.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnGetRoVals.ImagePaddingHorizontal = 8;
|
||||
this.btnGetRoVals.Name = "btnGetRoVals";
|
||||
this.superTooltip1.SetSuperTooltip(this.btnGetRoVals, new DevComponents.DotNetBar.SuperTooltipInfo("Update Referenced Object Values", "", "This will update the RO Values in this procedure set.\r\n\r\nThis button will become " +
|
||||
"active when new Referenced Object Values are available.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
"active when new Referenced Object Values are available.", null, null, DevComponents.DotNetBar.eTooltipColor.System));
|
||||
this.btnGetRoVals.Text = "Update RO Values";
|
||||
//
|
||||
// epAnnotations
|
||||
@ -771,7 +744,7 @@ namespace VEPROMS
|
||||
// ctrlAnnotationDetails
|
||||
//
|
||||
this.ctrlAnnotationDetails.AnnotationRTFText = "{\\rtf1\\ansi\\ansicpg1252\\deff0\\deflang1033{\\fonttbl{\\f0\\fnil\\fcharset0 Microsoft S" +
|
||||
"ans Serif;}}\r\n\\viewkind4\\uc1\\pard\\f0\\fs20\\par\r\n}\r\n";
|
||||
"ans Serif;}}\r\n\\viewkind4\\uc1\\pard\\f0\\fs20\\par\r\n}\r\n";
|
||||
this.ctrlAnnotationDetails.Annotations = null;
|
||||
this.ctrlAnnotationDetails.AnnotationText = "";
|
||||
this.ctrlAnnotationDetails.CurrentAnnotation = null;
|
||||
@ -798,7 +771,7 @@ namespace VEPROMS
|
||||
this.btnAnnoDetailsPushPin.ShowSubItems = false;
|
||||
this.btnAnnoDetailsPushPin.Size = new System.Drawing.Size(27, 23);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnAnnoDetailsPushPin, new DevComponents.DotNetBar.SuperTooltipInfo("Annotation Details Push Pin", "", "This will toggle between keeping the Annotation Details window opened or to open/" +
|
||||
"close automatically.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
"close automatically.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.btnAnnoDetailsPushPin.TabIndex = 14;
|
||||
this.btnAnnoDetailsPushPin.ThemeAware = true;
|
||||
//
|
||||
@ -809,12 +782,10 @@ namespace VEPROMS
|
||||
this.expandablePanel2.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.expandablePanel2.Controls.Add(this.tv);
|
||||
this.expandablePanel2.Dock = System.Windows.Forms.DockStyle.Left;
|
||||
this.expandablePanel2.Expanded = false;
|
||||
this.expandablePanel2.ExpandedBounds = new System.Drawing.Rectangle(4, 51, 251, 496);
|
||||
this.expandablePanel2.ExpandOnTitleClick = true;
|
||||
this.expandablePanel2.Location = new System.Drawing.Point(4, 57);
|
||||
this.expandablePanel2.Name = "expandablePanel2";
|
||||
this.expandablePanel2.Size = new System.Drawing.Size(30, 460);
|
||||
this.expandablePanel2.Size = new System.Drawing.Size(251, 460);
|
||||
this.expandablePanel2.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.expandablePanel2.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.expandablePanel2.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
@ -839,10 +810,11 @@ namespace VEPROMS
|
||||
this.tv.HideSelection = false;
|
||||
this.tv.Location = new System.Drawing.Point(0, 26);
|
||||
this.tv.Name = "tv";
|
||||
this.tv.Size = new System.Drawing.Size(30, 470);
|
||||
this.tv.Size = new System.Drawing.Size(251, 434);
|
||||
this.tv.TabIndex = 1;
|
||||
this.tv.BeforeExpand += new System.Windows.Forms.TreeViewCancelEventHandler(this.tv_BeforeExpand);
|
||||
this.tv.Click += new System.EventHandler(this.tv_Click);
|
||||
this.tv.SectionShouldClose += new Volian.Controls.Library.vlnTreeViewSectionInfoEvent(this.tv_SectionShouldClose);
|
||||
//
|
||||
// infoPanel
|
||||
//
|
||||
@ -854,7 +826,7 @@ namespace VEPROMS
|
||||
this.infoPanel.Expanded = false;
|
||||
this.infoPanel.ExpandedBounds = new System.Drawing.Rectangle(557, 57, 230, 457);
|
||||
this.infoPanel.ExpandOnTitleClick = true;
|
||||
this.infoPanel.Location = new System.Drawing.Point(757, 57);
|
||||
this.infoPanel.Location = new System.Drawing.Point(557, 57);
|
||||
this.infoPanel.Name = "infoPanel";
|
||||
this.infoPanel.Size = new System.Drawing.Size(30, 460);
|
||||
this.infoPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
@ -907,7 +879,7 @@ namespace VEPROMS
|
||||
this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.SystemColors.Control;
|
||||
this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanel1.Style.GradientAngle = 180;
|
||||
this.tabControlPanel1.TabIndex = 1;
|
||||
this.tabControlPanel1.TabItem = this.infotabTags;
|
||||
@ -1164,7 +1136,7 @@ namespace VEPROMS
|
||||
this.infotabControlPanelRO.Style.BackColor1.Color = System.Drawing.SystemColors.Control;
|
||||
this.infotabControlPanelRO.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.infotabControlPanelRO.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.infotabControlPanelRO.Style.GradientAngle = 180;
|
||||
this.infotabControlPanelRO.TabIndex = 4;
|
||||
this.infotabControlPanelRO.TabItem = this.infotabRO;
|
||||
@ -1203,7 +1175,7 @@ namespace VEPROMS
|
||||
this.infotabControlPanelTransitions.Style.BackColor1.Color = System.Drawing.SystemColors.Control;
|
||||
this.infotabControlPanelTransitions.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.infotabControlPanelTransitions.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.infotabControlPanelTransitions.Style.GradientAngle = 180;
|
||||
this.infotabControlPanelTransitions.TabIndex = 5;
|
||||
this.infotabControlPanelTransitions.TabItem = this.infotabTransition;
|
||||
@ -1272,7 +1244,7 @@ namespace VEPROMS
|
||||
this.expandableSplitter1.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||
this.expandableSplitter1.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(208)))), ((int)(((byte)(213)))));
|
||||
this.expandableSplitter1.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
|
||||
this.expandableSplitter1.Location = new System.Drawing.Point(34, 57);
|
||||
this.expandableSplitter1.Location = new System.Drawing.Point(255, 57);
|
||||
this.expandableSplitter1.Name = "expandableSplitter1";
|
||||
this.expandableSplitter1.Size = new System.Drawing.Size(3, 460);
|
||||
this.expandableSplitter1.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
|
||||
@ -1305,9 +1277,9 @@ namespace VEPROMS
|
||||
this.expandableSplitter2.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||
this.expandableSplitter2.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(208)))), ((int)(((byte)(213)))));
|
||||
this.expandableSplitter2.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
|
||||
this.expandableSplitter2.Location = new System.Drawing.Point(37, 514);
|
||||
this.expandableSplitter2.Location = new System.Drawing.Point(258, 514);
|
||||
this.expandableSplitter2.Name = "expandableSplitter2";
|
||||
this.expandableSplitter2.Size = new System.Drawing.Size(720, 3);
|
||||
this.expandableSplitter2.Size = new System.Drawing.Size(299, 3);
|
||||
this.expandableSplitter2.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
|
||||
this.expandableSplitter2.TabIndex = 6;
|
||||
this.expandableSplitter2.TabStop = false;
|
||||
@ -1338,7 +1310,7 @@ namespace VEPROMS
|
||||
this.expandableSplitter3.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||
this.expandableSplitter3.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(208)))), ((int)(((byte)(213)))));
|
||||
this.expandableSplitter3.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
|
||||
this.expandableSplitter3.Location = new System.Drawing.Point(754, 57);
|
||||
this.expandableSplitter3.Location = new System.Drawing.Point(554, 57);
|
||||
this.expandableSplitter3.Name = "expandableSplitter3";
|
||||
this.expandableSplitter3.Size = new System.Drawing.Size(3, 457);
|
||||
this.expandableSplitter3.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
|
||||
@ -1354,7 +1326,6 @@ namespace VEPROMS
|
||||
this.btnSrchRslt.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
this.btnSrchRslt.Checked = true;
|
||||
this.btnSrchRslt.Image = ((System.Drawing.Image)(resources.GetObject("btnSrchRslt.Image")));
|
||||
this.btnSrchRslt.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnSrchRslt.ImagePaddingHorizontal = 8;
|
||||
this.btnSrchRslt.Name = "btnSrchRslt";
|
||||
this.btnSrchRslt.OptionGroup = "navBar";
|
||||
@ -1369,11 +1340,11 @@ namespace VEPROMS
|
||||
// tc
|
||||
//
|
||||
this.tc.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tc.Location = new System.Drawing.Point(37, 57);
|
||||
this.tc.Location = new System.Drawing.Point(258, 57);
|
||||
this.tc.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
|
||||
this.tc.Name = "tc";
|
||||
this.tc.SelectedDisplayTabItem = null;
|
||||
this.tc.Size = new System.Drawing.Size(717, 457);
|
||||
this.tc.Size = new System.Drawing.Size(296, 457);
|
||||
this.tc.TabIndex = 8;
|
||||
this.tc.ItemSelectedChanged += new Volian.Controls.Library.ItemSelectedChangedEvent(this.tc_ItemSelectedChanged);
|
||||
this.tc.LinkModifyTran += new Volian.Controls.Library.StepPanelLinkEvent(this.tc_LinkModifyTran);
|
||||
@ -1382,7 +1353,6 @@ namespace VEPROMS
|
||||
// buttonItem1
|
||||
//
|
||||
this.buttonItem1.Image = ((System.Drawing.Image)(resources.GetObject("buttonItem1.Image")));
|
||||
this.buttonItem1.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.buttonItem1.ImagePaddingHorizontal = 8;
|
||||
this.buttonItem1.Name = "buttonItem1";
|
||||
this.buttonItem1.Text = "buttonItem19";
|
||||
@ -1399,12 +1369,10 @@ namespace VEPROMS
|
||||
this.searchPanel.ColorSchemeStyle = DevComponents.DotNetBar.eDotNetBarStyle.Office2007;
|
||||
this.searchPanel.Controls.Add(this.searchTabControl);
|
||||
this.searchPanel.Dock = System.Windows.Forms.DockStyle.Right;
|
||||
this.searchPanel.Expanded = false;
|
||||
this.searchPanel.ExpandedBounds = new System.Drawing.Rectangle(587, 57, 230, 457);
|
||||
this.searchPanel.ExpandOnTitleClick = true;
|
||||
this.searchPanel.Location = new System.Drawing.Point(790, 57);
|
||||
this.searchPanel.Location = new System.Drawing.Point(590, 57);
|
||||
this.searchPanel.Name = "searchPanel";
|
||||
this.searchPanel.Size = new System.Drawing.Size(30, 460);
|
||||
this.searchPanel.Size = new System.Drawing.Size(230, 460);
|
||||
this.searchPanel.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.searchPanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.searchPanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
@ -1427,18 +1395,20 @@ namespace VEPROMS
|
||||
this.searchTabControl.BackColor = System.Drawing.Color.Transparent;
|
||||
this.searchTabControl.CanReorderTabs = true;
|
||||
this.searchTabControl.Controls.Add(this.tabControlPanel2);
|
||||
this.searchTabControl.Controls.Add(this.tabControlPanelLD);
|
||||
this.searchTabControl.Controls.Add(this.annotationSearch);
|
||||
this.searchTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.searchTabControl.Location = new System.Drawing.Point(0, 26);
|
||||
this.searchTabControl.Name = "searchTabControl";
|
||||
this.searchTabControl.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Bold);
|
||||
this.searchTabControl.SelectedTabIndex = 0;
|
||||
this.searchTabControl.Size = new System.Drawing.Size(30, 431);
|
||||
this.searchTabControl.Size = new System.Drawing.Size(230, 434);
|
||||
this.searchTabControl.TabAlignment = DevComponents.DotNetBar.eTabStripAlignment.Right;
|
||||
this.searchTabControl.TabIndex = 1;
|
||||
this.searchTabControl.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
|
||||
this.searchTabControl.Tabs.Add(this.infotabBookMarks);
|
||||
this.searchTabControl.Tabs.Add(this.infotabResults);
|
||||
this.searchTabControl.Tabs.Add(this.tabItemLibDocs);
|
||||
this.searchTabControl.Text = "tabControl1";
|
||||
this.searchTabControl.ThemeAware = true;
|
||||
//
|
||||
@ -1449,11 +1419,11 @@ namespace VEPROMS
|
||||
this.tabControlPanel2.Location = new System.Drawing.Point(0, 0);
|
||||
this.tabControlPanel2.Name = "tabControlPanel2";
|
||||
this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel2.Size = new System.Drawing.Size(3, 431);
|
||||
this.tabControlPanel2.Size = new System.Drawing.Size(203, 434);
|
||||
this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.SystemColors.Control;
|
||||
this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanel2.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanel2.Style.GradientAngle = 180;
|
||||
this.tabControlPanel2.TabIndex = 2;
|
||||
this.tabControlPanel2.TabItem = this.infotabBookMarks;
|
||||
@ -1471,7 +1441,7 @@ namespace VEPROMS
|
||||
this.panelEx3.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.panelEx3.Location = new System.Drawing.Point(1, 1);
|
||||
this.panelEx3.Name = "panelEx3";
|
||||
this.panelEx3.Size = new System.Drawing.Size(1, 429);
|
||||
this.panelEx3.Size = new System.Drawing.Size(201, 432);
|
||||
this.panelEx3.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.panelEx3.Style.BackColor1.Color = System.Drawing.Color.Transparent;
|
||||
this.panelEx3.Style.BackColor2.Color = System.Drawing.Color.SlateGray;
|
||||
@ -1488,7 +1458,7 @@ namespace VEPROMS
|
||||
this.lbxBookMarks.ItemHeight = 16;
|
||||
this.lbxBookMarks.Location = new System.Drawing.Point(0, 87);
|
||||
this.lbxBookMarks.Name = "lbxBookMarks";
|
||||
this.lbxBookMarks.Size = new System.Drawing.Size(1, 340);
|
||||
this.lbxBookMarks.Size = new System.Drawing.Size(201, 340);
|
||||
this.lbxBookMarks.TabIndex = 3;
|
||||
this.lbxBookMarks.Click += new System.EventHandler(this.lbxBookMarks_Click);
|
||||
//
|
||||
@ -1498,7 +1468,7 @@ namespace VEPROMS
|
||||
this.btnClrBookMrks.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.btnClrBookMrks.Location = new System.Drawing.Point(0, 58);
|
||||
this.btnClrBookMrks.Name = "btnClrBookMrks";
|
||||
this.btnClrBookMrks.Size = new System.Drawing.Size(1, 29);
|
||||
this.btnClrBookMrks.Size = new System.Drawing.Size(201, 29);
|
||||
this.btnClrBookMrks.TabIndex = 2;
|
||||
this.btnClrBookMrks.Text = "Clear ALL Bookmarks";
|
||||
this.btnClrBookMrks.ThemeAware = true;
|
||||
@ -1510,7 +1480,7 @@ namespace VEPROMS
|
||||
this.btnRmvCurBookMrk.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.btnRmvCurBookMrk.Location = new System.Drawing.Point(0, 29);
|
||||
this.btnRmvCurBookMrk.Name = "btnRmvCurBookMrk";
|
||||
this.btnRmvCurBookMrk.Size = new System.Drawing.Size(1, 29);
|
||||
this.btnRmvCurBookMrk.Size = new System.Drawing.Size(201, 29);
|
||||
this.btnRmvCurBookMrk.TabIndex = 1;
|
||||
this.btnRmvCurBookMrk.Text = "Remove Bookmark";
|
||||
this.btnRmvCurBookMrk.ThemeAware = true;
|
||||
@ -1522,7 +1492,7 @@ namespace VEPROMS
|
||||
this.btnSetBookMrk.Dock = System.Windows.Forms.DockStyle.Top;
|
||||
this.btnSetBookMrk.Location = new System.Drawing.Point(0, 0);
|
||||
this.btnSetBookMrk.Name = "btnSetBookMrk";
|
||||
this.btnSetBookMrk.Size = new System.Drawing.Size(1, 29);
|
||||
this.btnSetBookMrk.Size = new System.Drawing.Size(201, 29);
|
||||
this.btnSetBookMrk.TabIndex = 0;
|
||||
this.btnSetBookMrk.Text = "Set Bookmark";
|
||||
this.btnSetBookMrk.ThemeAware = true;
|
||||
@ -1534,6 +1504,42 @@ namespace VEPROMS
|
||||
this.infotabBookMarks.Name = "infotabBookMarks";
|
||||
this.infotabBookMarks.Text = "BookMarks";
|
||||
//
|
||||
// tabControlPanelLD
|
||||
//
|
||||
this.tabControlPanelLD.Controls.Add(this.displayLibDocs);
|
||||
this.tabControlPanelLD.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.tabControlPanelLD.Location = new System.Drawing.Point(0, 0);
|
||||
this.tabControlPanelLD.Name = "tabControlPanelLD";
|
||||
this.tabControlPanelLD.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanelLD.Size = new System.Drawing.Size(203, 434);
|
||||
this.tabControlPanelLD.Style.BackColor1.Color = System.Drawing.SystemColors.Control;
|
||||
this.tabControlPanelLD.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanelLD.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanelLD.Style.GradientAngle = 180;
|
||||
this.tabControlPanelLD.TabIndex = 4;
|
||||
this.tabControlPanelLD.TabItem = this.tabItemLibDocs;
|
||||
this.tabControlPanelLD.ThemeAware = true;
|
||||
//
|
||||
// displayLibDocs
|
||||
//
|
||||
this.displayLibDocs.AutoScroll = true;
|
||||
this.displayLibDocs.CurLibDoc = null;
|
||||
this.displayLibDocs.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.displayLibDocs.LibDocList = null;
|
||||
this.displayLibDocs.Location = new System.Drawing.Point(1, 1);
|
||||
this.displayLibDocs.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
|
||||
this.displayLibDocs.Name = "displayLibDocs";
|
||||
this.displayLibDocs.Size = new System.Drawing.Size(201, 432);
|
||||
this.displayLibDocs.TabIndex = 0;
|
||||
//
|
||||
// tabItemLibDocs
|
||||
//
|
||||
this.tabItemLibDocs.AttachedControl = this.tabControlPanelLD;
|
||||
this.tabItemLibDocs.Name = "tabItemLibDocs";
|
||||
this.tabItemLibDocs.Text = "Library Documents";
|
||||
this.tabItemLibDocs.Click += new System.EventHandler(this.tabItemLibDocs_Click);
|
||||
//
|
||||
// annotationSearch
|
||||
//
|
||||
this.annotationSearch.Controls.Add(this.navpaneResults);
|
||||
@ -1541,11 +1547,11 @@ namespace VEPROMS
|
||||
this.annotationSearch.Location = new System.Drawing.Point(0, 0);
|
||||
this.annotationSearch.Name = "annotationSearch";
|
||||
this.annotationSearch.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.annotationSearch.Size = new System.Drawing.Size(3, 431);
|
||||
this.annotationSearch.Size = new System.Drawing.Size(203, 434);
|
||||
this.annotationSearch.Style.BackColor1.Color = System.Drawing.SystemColors.Control;
|
||||
this.annotationSearch.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.annotationSearch.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Top)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.annotationSearch.Style.GradientAngle = 180;
|
||||
this.annotationSearch.TabIndex = 3;
|
||||
this.annotationSearch.TabItem = this.infotabResults;
|
||||
@ -1565,7 +1571,7 @@ namespace VEPROMS
|
||||
this.navpaneResults.Name = "navpaneResults";
|
||||
this.navpaneResults.NavigationBarHeight = 61;
|
||||
this.navpaneResults.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.navpaneResults.Size = new System.Drawing.Size(1, 429);
|
||||
this.navpaneResults.Size = new System.Drawing.Size(201, 432);
|
||||
this.navpaneResults.TabIndex = 0;
|
||||
//
|
||||
//
|
||||
@ -1574,7 +1580,7 @@ namespace VEPROMS
|
||||
this.navpaneResults.TitlePanel.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.navpaneResults.TitlePanel.Location = new System.Drawing.Point(1, 1);
|
||||
this.navpaneResults.TitlePanel.Name = "panelTitle";
|
||||
this.navpaneResults.TitlePanel.Size = new System.Drawing.Size(0, 24);
|
||||
this.navpaneResults.TitlePanel.Size = new System.Drawing.Size(199, 24);
|
||||
this.navpaneResults.TitlePanel.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.navpaneResults.TitlePanel.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
this.navpaneResults.TitlePanel.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
@ -1593,7 +1599,7 @@ namespace VEPROMS
|
||||
this.navpanSrchRslts.Location = new System.Drawing.Point(1, 25);
|
||||
this.navpanSrchRslts.Name = "navpanSrchRslts";
|
||||
this.navpanSrchRslts.ParentItem = this.btnSrchRslt;
|
||||
this.navpanSrchRslts.Size = new System.Drawing.Size(0, 342);
|
||||
this.navpanSrchRslts.Size = new System.Drawing.Size(199, 345);
|
||||
this.navpanSrchRslts.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.navpanSrchRslts.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
|
||||
this.navpanSrchRslts.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
|
||||
@ -1609,7 +1615,7 @@ namespace VEPROMS
|
||||
this.CtrlAnnotationSearch.Location = new System.Drawing.Point(0, 0);
|
||||
this.CtrlAnnotationSearch.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.CtrlAnnotationSearch.Name = "CtrlAnnotationSearch";
|
||||
this.CtrlAnnotationSearch.Size = new System.Drawing.Size(0, 342);
|
||||
this.CtrlAnnotationSearch.Size = new System.Drawing.Size(199, 345);
|
||||
this.CtrlAnnotationSearch.TabIndex = 0;
|
||||
//
|
||||
// navigationPanePanel3
|
||||
@ -1618,7 +1624,7 @@ namespace VEPROMS
|
||||
this.navigationPanePanel3.Location = new System.Drawing.Point(1, 1);
|
||||
this.navigationPanePanel3.Name = "navigationPanePanel3";
|
||||
this.navigationPanePanel3.ParentItem = this.btnSimStpsRslt;
|
||||
this.navigationPanePanel3.Size = new System.Drawing.Size(0, 366);
|
||||
this.navigationPanePanel3.Size = new System.Drawing.Size(199, 369);
|
||||
this.navigationPanePanel3.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.navigationPanePanel3.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
|
||||
this.navigationPanePanel3.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
|
||||
@ -1631,7 +1637,6 @@ namespace VEPROMS
|
||||
//
|
||||
this.btnSimStpsRslt.Image = ((System.Drawing.Image)(resources.GetObject("btnSimStpsRslt.Image")));
|
||||
this.btnSimStpsRslt.ImageFixedSize = new System.Drawing.Size(16, 16);
|
||||
this.btnSimStpsRslt.ImageListSizeSelection = DevComponents.DotNetBar.eButtonImageListSelection.NotSet;
|
||||
this.btnSimStpsRslt.ImagePaddingHorizontal = 8;
|
||||
this.btnSimStpsRslt.Name = "btnSimStpsRslt";
|
||||
this.btnSimStpsRslt.OptionGroup = "navBar";
|
||||
@ -1670,7 +1675,7 @@ namespace VEPROMS
|
||||
this.expandableSplitter4.HotGripDarkColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBorder;
|
||||
this.expandableSplitter4.HotGripLightColor = System.Drawing.Color.FromArgb(((int)(((byte)(205)))), ((int)(((byte)(208)))), ((int)(((byte)(213)))));
|
||||
this.expandableSplitter4.HotGripLightColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
|
||||
this.expandableSplitter4.Location = new System.Drawing.Point(787, 57);
|
||||
this.expandableSplitter4.Location = new System.Drawing.Point(587, 57);
|
||||
this.expandableSplitter4.Name = "expandableSplitter4";
|
||||
this.expandableSplitter4.Size = new System.Drawing.Size(3, 460);
|
||||
this.expandableSplitter4.Style = DevComponents.DotNetBar.eSplitterStyle.Office2007;
|
||||
@ -1720,6 +1725,7 @@ namespace VEPROMS
|
||||
this.searchTabControl.ResumeLayout(false);
|
||||
this.tabControlPanel2.ResumeLayout(false);
|
||||
this.panelEx3.ResumeLayout(false);
|
||||
this.tabControlPanelLD.ResumeLayout(false);
|
||||
this.annotationSearch.ResumeLayout(false);
|
||||
this.navpaneResults.ResumeLayout(false);
|
||||
this.navpanSrchRslts.ResumeLayout(false);
|
||||
@ -1841,6 +1847,9 @@ namespace VEPROMS
|
||||
private DevComponents.DotNetBar.ButtonX btnSetBookMrk;
|
||||
private DevComponents.DotNetBar.TabItem infotabBookMarks;
|
||||
private DevComponents.DotNetBar.ExpandableSplitter expandableSplitter4;
|
||||
private DevComponents.DotNetBar.TabControlPanel tabControlPanelLD;
|
||||
private Volian.Controls.Library.DisplayLibDocs displayLibDocs;
|
||||
private DevComponents.DotNetBar.TabItem tabItemLibDocs;
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -265,211 +265,30 @@ namespace VEPROMS
|
||||
}
|
||||
else if (args.SectionConfig != null)
|
||||
{
|
||||
//// If this is a word document, close any edit sessions...
|
||||
//ItemInfo ii = null;
|
||||
//using (Section tmp = args.SectionConfig.MySection)
|
||||
//{
|
||||
// ii = ItemInfo.Get(tmp.ItemID);
|
||||
// if (!ii.IsStepSection) tc.CloseWordItem(ii);
|
||||
//}
|
||||
|
||||
frmSectionProperties frmsec = new frmSectionProperties(args.SectionConfig);
|
||||
dr = frmsec.ShowDialog();
|
||||
if (dr == DialogResult.OK && displayLibDocs.LibDocList != null)
|
||||
{
|
||||
displayLibDocs.LibDocListFillIn(tc);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
this.Cursor = Cursors.Default;
|
||||
return dr;
|
||||
}
|
||||
void tv_NodeFolderProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args)
|
||||
{
|
||||
|
||||
FolderInfo fi = ((VETreeNode)args.Node).VEObject as FolderInfo;
|
||||
DialogResult dr = DialogResult.Cancel;
|
||||
|
||||
if (dr == DialogResult.OK) fi.Get().Save();
|
||||
|
||||
}
|
||||
void tv_NodeDocVersionProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args)
|
||||
{
|
||||
this.Cursor = Cursors.WaitCursor;
|
||||
DocVersionInfo dvi = ((VETreeNode)args.Node).VEObject as DocVersionInfo;
|
||||
if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid)
|
||||
{
|
||||
frmPropGrid propGrid = new frmPropGrid(dvi.DocVersionConfig, string.Format("{0} Properties", dvi.DocVersionConfig.Name));
|
||||
if (propGrid.ShowDialog() == DialogResult.OK)
|
||||
dvi.Get().Save();
|
||||
}
|
||||
else
|
||||
{
|
||||
frmVersionsProperties frmver = new frmVersionsProperties(dvi.DocVersionConfig);
|
||||
if (frmver.ShowDialog() == DialogResult.OK)
|
||||
dvi.Get().Save();
|
||||
}
|
||||
this.Cursor = Cursors.Default;
|
||||
}
|
||||
void tv_NodeProcProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args)
|
||||
{
|
||||
this.Cursor = Cursors.WaitCursor;
|
||||
ProcedureInfo pi = ((VETreeNode)args.Node).VEObject as ProcedureInfo;
|
||||
if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid)
|
||||
{
|
||||
frmPropGrid propGrid = new frmPropGrid(pi.ProcedureConfig, string.Format("{0} {1} Properties", pi.ProcedureConfig.Number, pi.ProcedureConfig.Title));
|
||||
if (propGrid.ShowDialog() == DialogResult.OK)
|
||||
pi.Get().Save();
|
||||
}
|
||||
else
|
||||
{
|
||||
frmProcedureProperties frmproc = new frmProcedureProperties(pi.ProcedureConfig);
|
||||
if (frmproc.ShowDialog() == DialogResult.OK)
|
||||
pi.Get().Save();
|
||||
}
|
||||
this.Cursor = Cursors.Default;
|
||||
}
|
||||
void tv_NodeSectProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args)
|
||||
{
|
||||
this.Cursor = Cursors.WaitCursor;
|
||||
SectionInfo si = ((VETreeNode)args.Node).VEObject as SectionInfo;
|
||||
if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid)
|
||||
{
|
||||
string title = null;
|
||||
if (si.SectionConfig.Number.Length > 0)
|
||||
title = string.Format("{0} {1} Properties", si.SectionConfig.Number, si.SectionConfig.Title);
|
||||
else
|
||||
title = string.Format("{0} Properties", si.SectionConfig.Title);
|
||||
frmPropGrid propGrid = new frmPropGrid(si.SectionConfig, title);
|
||||
if (propGrid.ShowDialog() == DialogResult.OK)
|
||||
si.Get().Save();
|
||||
}
|
||||
else
|
||||
{
|
||||
frmSectionProperties frmsec = new frmSectionProperties(si.SectionConfig);
|
||||
if (frmsec.ShowDialog() == DialogResult.OK)
|
||||
si.Get().Save();
|
||||
}
|
||||
this.Cursor = Cursors.Default;
|
||||
}
|
||||
private void btnProperties_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (tv.SelectedNode == null) MessageBox.Show("Must select a node on the Tree to get properties");
|
||||
//Determine type of selected tree view node & handle based on that.
|
||||
VETreeNode tn = (VETreeNode)(tv.SelectedNode);
|
||||
if ((tn.VEObject as FolderInfo) != null)
|
||||
tv_NodeFolderProperties(null, new vlnTreeEventArgs(tv.SelectedNode));
|
||||
else if ((tn.VEObject as DocVersionInfo) != null)
|
||||
tv_NodeDocVersionProperties(null, new vlnTreeEventArgs(tv.SelectedNode));
|
||||
else if ((tn.VEObject as ProcedureInfo) != null)
|
||||
tv_NodeProcProperties(null, new vlnTreeEventArgs(tv.SelectedNode));
|
||||
else if ((tn.VEObject as SectionInfo) != null)
|
||||
tv_NodeSectProperties(null, new vlnTreeEventArgs(tv.SelectedNode));
|
||||
else
|
||||
MessageBox.Show("Properties not available for this Tree selection");
|
||||
}
|
||||
/// <summary>
|
||||
// this is used by tv_NodeProperties() and by ribbonFilePropertes_Click()
|
||||
// the type of the args parameter for these two functions is different and
|
||||
// type casting didn't work, so I put the guts in this function.
|
||||
/// </summary>
|
||||
// TODO: DeleteMe
|
||||
//void tv_NodeProperties(object sender, Volian.Controls.Library.vlnTreeEventArgs args)
|
||||
//{
|
||||
// DisplayProperties();
|
||||
//}
|
||||
//private void DisplayProperties()
|
||||
//{
|
||||
// // check the user's preference on the style of poperty dialogs "PropPageStyle"
|
||||
// // 1 - Button dialog interface
|
||||
// // 2 - Tab dialog interface
|
||||
// // 3 - Property Grid interface
|
||||
// //SetLastValues((VETreeNode)(tv.SelectedNode));
|
||||
// this.Cursor = Cursors.WaitCursor;
|
||||
// if ((int)Settings.Default["PropPageStyle"] == (int)PropPgStyle.Grid)
|
||||
// DoPropertyGrid(); // Will display a Property Grid interface
|
||||
// else
|
||||
// DoPropertyPages(); // Will display either a Button or a Tab dialog
|
||||
// this.Cursor = Cursors.Default;
|
||||
//}
|
||||
/// <summary>
|
||||
/// Display a Property Page for the current tree node
|
||||
/// </summary>
|
||||
//private void DoPropertyPages()
|
||||
//{
|
||||
// // Display a property page. (the ppStyle selects either a tabbed or button interface)
|
||||
// VETreeNode tn = (VETreeNode)(tv.SelectedNode);
|
||||
// if ((tn.VEObject as FolderInfo) != null)
|
||||
// {
|
||||
// FolderInfo fi = tn.VEObject as FolderInfo;
|
||||
// frmFolderProperties frmfld = new frmFolderProperties(fi.FolderConfig);
|
||||
// if (frmfld.ShowDialog() == DialogResult.OK)
|
||||
// fi.Get().Save();
|
||||
// }
|
||||
// else if ((tn.VEObject as DocVersionInfo) != null)
|
||||
// {
|
||||
// DocVersionInfo dvi = tn.VEObject as DocVersionInfo;
|
||||
// frmVersionsProperties frmver = new frmVersionsProperties(dvi.DocVersionConfig);
|
||||
// if (frmver.ShowDialog() == DialogResult.OK)
|
||||
// dvi.Get().Save();
|
||||
// }
|
||||
// else if ((tn.VEObject as ProcedureInfo) != null)
|
||||
// {
|
||||
// ProcedureInfo pi = tn.VEObject as ProcedureInfo;
|
||||
// frmProcedureProperties frmproc = new frmProcedureProperties(pi.ProcedureConfig);
|
||||
// if (frmproc.ShowDialog() == DialogResult.OK)
|
||||
// pi.Get().Save();
|
||||
// }
|
||||
// else if ((tn.VEObject as SectionInfo) != null)
|
||||
// {
|
||||
// SectionInfo si = tn.VEObject as SectionInfo;
|
||||
// frmSectionProperties frmsec = new frmSectionProperties(si.SectionConfig);
|
||||
// if (frmsec.ShowDialog() == DialogResult.OK)
|
||||
// si.Get().Save();
|
||||
// }
|
||||
//}
|
||||
/// <summary>
|
||||
/// Display a property grid for the current tree node
|
||||
/// </summary>
|
||||
//private void DoPropertyGrid()
|
||||
//{
|
||||
// // Display a property grid
|
||||
// VETreeNode tn = (VETreeNode)(tv.SelectedNode);
|
||||
// frmPropGrid propGrid = null;
|
||||
// string title = "";
|
||||
// if ((tn.VEObject as FolderInfo) != null)
|
||||
// {
|
||||
// FolderInfo fi = tn.VEObject as FolderInfo;
|
||||
// title = string.Format("{0} Properties", fi.FolderConfig.Name);
|
||||
// propGrid = new frmPropGrid(fi.FolderConfig, title);
|
||||
// if (propGrid.ShowDialog() == DialogResult.OK)
|
||||
// fi.Get().Save();
|
||||
// }
|
||||
// else if ((tn.VEObject as DocVersionInfo) != null)
|
||||
// {
|
||||
// DocVersionInfo dvi = tn.VEObject as DocVersionInfo;
|
||||
// title = string.Format("{0} Properties", dvi.DocVersionConfig.Name);
|
||||
// propGrid = new frmPropGrid(dvi.DocVersionConfig, title);
|
||||
// if (propGrid.ShowDialog() == DialogResult.OK)
|
||||
// dvi.Get().Save();
|
||||
// }
|
||||
// else if ((tn.VEObject as ProcedureInfo) != null)
|
||||
// {
|
||||
// ProcedureInfo pi = tn.VEObject as ProcedureInfo;
|
||||
// title = string.Format("{0} {1} Properties", pi.ProcedureConfig.Number, pi.ProcedureConfig.Title);
|
||||
// propGrid = new frmPropGrid(pi.ProcedureConfig, title);
|
||||
// if (propGrid.ShowDialog() == DialogResult.OK)
|
||||
// pi.Get().Save();
|
||||
// }
|
||||
// else if ((tn.VEObject as SectionInfo) != null)
|
||||
// {
|
||||
// SectionInfo si = tn.VEObject as SectionInfo;
|
||||
// if (si.SectionConfig.Number.Length > 0)
|
||||
// title = string.Format("{0} {1} Properties", si.SectionConfig.Number, si.SectionConfig.Title);
|
||||
// else
|
||||
// title = string.Format("{0} Properties", si.SectionConfig.Title);
|
||||
// propGrid = new frmPropGrid(si.SectionConfig, title);
|
||||
// if (propGrid.ShowDialog() == DialogResult.OK)
|
||||
// si.Get().Save();
|
||||
// }
|
||||
//}
|
||||
/// <summary>
|
||||
/// Button from the Ribbon Bar
|
||||
/// </summary>
|
||||
/// <param name="sender">object</param>
|
||||
/// <param name="e">EventArgs</param>
|
||||
}
|
||||
#endregion
|
||||
#endregion
|
||||
#region ColorStuff
|
||||
/// <summary>
|
||||
#endregion
|
||||
#region ColorStuff
|
||||
/// <summary>
|
||||
/// Get a System.Drawing.Color from an Argb or color name
|
||||
/// </summary>
|
||||
/// <param name="strColor">Color Name or "[(alpha,)red,green,blue]"</param>
|
||||
@ -1014,7 +833,6 @@ namespace VEPROMS
|
||||
}
|
||||
#endregion
|
||||
private ItemInfo _CurrentItem = null;
|
||||
|
||||
private void tc_ItemSelectedChanged(object sender, ItemSelectedChangedEventArgs args)
|
||||
{
|
||||
if (args == null)
|
||||
@ -1311,5 +1129,15 @@ namespace VEPROMS
|
||||
tv.tv_NodeNew(vlnTreeView.MenuSelections.Folder);
|
||||
}
|
||||
#endregion
|
||||
|
||||
private void tabItemLibDocs_Click(object sender, EventArgs e)
|
||||
{
|
||||
displayLibDocs.LibDocListFillIn(tc);
|
||||
}
|
||||
|
||||
private void tv_SectionShouldClose(object sender, vlnTreeSectionInfoEventArgs args)
|
||||
{
|
||||
if (!args.MySectionInfo.IsStepSection) tc.CloseWordItem(args.MySectionInfo);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -121,8 +121,8 @@
|
||||
<data name="btnHelp.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEAAA
|
||||
CxABrSO9dQAAAjNJREFUOE+lk01rE1EUhvUf5CfkJxQFF66ydDloA1lGcNGFSnAhQRCHghAMakSKBktn
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALBwAA
|
||||
CwcBtnMLwAAAAjNJREFUOE+lk01rE1EUhvUf5CfkJxQFF66ydDloA1lGcNGFSnAhQRCHghAMakSKBktn
|
||||
rIqNpDqb2hitHdFWi0gHazW2YZKWqGkzTa9OlX5oXs+5k8407cKFFw733Mt5n/Mxd/YD2PdfiwG7bWLG
|
||||
xZ3iMlJ3K+gdmENfvoyRV18obG9sh/i9vY7ceBNacQnVxia+r21BuJvkb+ByroSUZqH4erED5ANY/MBc
|
||||
hfOzBdMC1CFASXnGvmkJ2KstXOibxMiLsg/xAZx55VcLuglEkoBeAMQ6xwFVASRu8p1AhSBn0s86ARMf
|
||||
@ -137,8 +137,8 @@
|
||||
<data name="btnHelpManual.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA
|
||||
EnABIZuYagAAAldJREFUOE+Nk91PUnEYx4E27/sDuu2q7rrpos3mWv0BratWa2urluuiLaerC6cXsbHZ
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA
|
||||
Em4BzAbEXgAAAldJREFUOE+Nk91PUnEYx4E27/sDuu2q7rrpos3mWv0BratWa2urluuiLaerC6cXsbHZ
|
||||
elHUWavmC9qAlR6zDA0wA6NA3gSBhMjMgyIICJ63b88PFhtCW2d7dn5n5/l+ns/vd3bUAFTs0k7EKosD
|
||||
l1qjUUmlkupQU5NKo5JVbReOqmtaGIDV/fEo3QBRAUoiUBAUZEsK0nsKtnIy2Pu2SZ61lPv/VnXBGkQZ
|
||||
KFI4v0/hooLtgoIUhTeyMlpGi+VqfhSvgdQAigKQo6kZNjWv4KMnBaM1CUc4C1cA5ZqYLKC1fbwKqQHs
|
||||
@ -154,8 +154,8 @@
|
||||
<data name="btnHelpAbout.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA
|
||||
EnABIZuYagAAAo1JREFUOE+lke1LU2EYxu2v6D8IgkKIIMIg8kMtlRQjskkGc03NN1j2YpYFMYmpuTXn
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA
|
||||
Em4BzAbEXgAAAo1JREFUOE+lke1LU2EYxu2v6D8IgkKIIMIg8kMtlRQjskkGc03NN1j2YpYFMYmpuTXn
|
||||
0rItU8wyQ2TqamjpUGwYCr5sJtN0tXd1O9vZjjvr6rzk9ODHbngOz/1cz/27r+c+BwCk/FewgL2rotWB
|
||||
mjdreNjtxW2DF1LVEm7UT6C6ycRcE97lmu8clmrtkOtX0DjggmWZxJKLwqqXhsNF4sv0GpR6Cy5WGiC5
|
||||
/1YA4gAy1TzkLx3omfSDZuV/sRWhsRmJc1kwHEP34DRyytogrjIkIRygRDOHZwNre0oBV4DEyfJJHJd9
|
||||
@ -172,8 +172,8 @@
|
||||
<data name="btnHelpVWeb.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALEAAA
|
||||
CxABrSO9dQAAAwtJREFUOE99kmtMklEYx+t7a6v5qWYfal281Lob1rqoqSU0o0wzyxRDUUmszEkgmmFR
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALBwAA
|
||||
CwcBtnMLwAAAAwtJREFUOE99kmtMklEYx+t7a6v5qWYfal281Lob1rqoqSU0o0wzyxRDUUmszEkgmmFR
|
||||
vhiCeAsSrAwnhWihfcjpcN106lRWK2GFU4c11zQTsP69L84vUj3b/5yd/Z/nt/M85ywFsIQKRV2rL7md
|
||||
IBUxNze3w+V2L3G53D1Ol6vNOevU3+az7J7ExUEB5FoTjZShpEUPeY8OZZZqyD4V4mJ7NJJKCWTmlxtS
|
||||
rhI0KnexqGJfqvjaMylufsjD86/t6J6xIk0ngOR9DpL0oQgrkuEMV2w4wc73/RuAl6dVIfnVLihtuTB9
|
||||
@ -218,8 +218,8 @@
|
||||
<data name="btnNew.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAABEVJREFUWEfNV9tOlFcY/e56ZdMn6Cv4FD5AY7VWrVbFEyPtrRdNTJrGZ+g71BLjRdNo
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAABEVJREFUWEfNV9tOlFcY/e56ZdMn6Cv4FD5AY7VWrVbFEyPtrRdNTJrGZ+g71BLjRdNo
|
||||
bBPTtLYesCgUOXigOAKOMwNyHOBfXWvP/obNwGwghqQ7WSGBP986fN8+YPa/Wgdv1+zTX2GH7hC/wQ7/
|
||||
DvvsLuzIX7DP78OOPiQewY71w44/gX0xSAzBTgzDTo4QY7Avn8NOvSDGa3Z64uTu/JH8wSTeGz8OApd/
|
||||
Wsa+Uhl2prwLEXQ+8Abvjd5+4MD3wDc/N7Dv0hSsa2qHIhj7aA0B/1SAx9PAE0KiBgn9Thginr5tYjhi
|
||||
@ -243,8 +243,8 @@
|
||||
<data name="btnOpen.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAAAz9JREFUWEftl2tIk2EUxyXCEs0Ki8hkVtrKCvxQGFSmeJnm1MQuQlJiikJSU3CaZm1K
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAAAz9JREFUWEftl2tIk2EUxyXCEs0Ki8hkVtrKCvxQGFSmeJnm1MQuQlJiikJSU3CaZm1K
|
||||
ZJhkyIRpk+UNRaRQW9GU3kRRIy+laB90rEiyqBRU1Ozy77yOvM3pPjxCHxz84GEMzm/nfc7ltbBY/fwP
|
||||
GUj0EboSMimP7yxJdE4SGUiei59Qds3AKSb+FJyryIqBtijNmGL6jqhbBBIYZibQ31mKP5Ma/B5RmQ0J
|
||||
gIkApZ3r71Tj50AMJtsszSbFXwjCgyeV56SB6/8IoDOxrOS0QEc+pj5GY/zVerNRxh1EgfQMHvAkzaKi
|
||||
@ -264,8 +264,8 @@
|
||||
<data name="btnPrint.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAABadJREFUWEftl1lMVFcYx89r0xcf2jRp04cqBglqkYALiCAVClqkbMowwIDsy4gCFZfg
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAABadJREFUWEftl1lMVFcYx89r0xcf2jRp04cqBglqkYALiCAVClqkbMowwIDsy4gCFZfg
|
||||
aSIaGKgjRLHaugA6NdJqjAKJSy4FAkEFBCoWquBQBEQEBGWHf883Aqm5jQyEx97kl+Ee7ve/v/vdM5Nz
|
||||
GPv/mK0DXhJnPqVg2yvAFPfB/GrB/B+CBTaCqZ6ABevBdrSBhXSAhXWBhb8Ei+gDi+yXZos27v8+ZXyP
|
||||
rhU9g0DfMDAwArwZBQYFQ2PA8L+gcxovejguBF4vkMD2Sp6oe4YXb4CeobcS/ULi9ZTItAx9EiRYSAJR
|
||||
@ -295,8 +295,8 @@
|
||||
<data name="btnPrepare.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAACZZJREFUWEfFl2dUVFkWRhXDCJIzigTFbItSpjEHBIlFFAMCY+oxgmIYTCWhwVYEJSmI
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAACZZJREFUWEfFl2dUVFkWRhXDCJIzigTFbItSpjEHBIlFFAMCY+oxgmIYTCWhwVYEJSmI
|
||||
VYoBoUREQRAVxJwds20r2CYMQIFEbeWbc28JDoPMcvwzrHXWg6pX7+z3nX3vo1q3auEn3L6TULHNJyet
|
||||
9rVjP9e3NvkEhVaf6lm1LqffD3+GwpbFmW9utfT573kdQPPTjnu2Nz82/S83V1t1hdhFE4c8lCCdrIxk
|
||||
NxUkuahB7KSBeEctxNjrYqudnvf3NGrpnGYABT5t1PK82sikHspYY90VyZNVkTmtAw5PUcTByR1xwF0F
|
||||
@ -343,8 +343,8 @@
|
||||
<data name="btnClose.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAAA8JJREFUWEftln1M1HUcx/kjCRE4EWiwllB/XKutteqPVqtsJfjEQzYqXVSuMFM3L4sH
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAAA8JJREFUWEftln1M1HUcx/kjCRE4EWiwllB/XKutteqPVqtsJfjEQzYqXVSuMFM3L4sH
|
||||
w+N+lE4nD00d8hAgSa6YMhK1MbHrcCytLSM2bOZIatacPcyJYFCxV+/fHXh33ulw+7n1h7e9tt/3e7f7
|
||||
vu7z+Xw/94mIuPn6P0SgYK49RxiF6cEUaV2U4aM4kHl2Y50PmyX+OpyuXc7wtGhfHL6ClrI8JNBsiUCh
|
||||
BBj/lvGRVsaHGqfEwDGXKeCxRiDdFDjG6DeRU+bk3jjemW/vFXNMSkwW+FmvZy8LfTgX2u+/qqxyD/92
|
||||
@ -366,8 +366,8 @@
|
||||
<data name="btnOptions.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAAAt5JREFUOE990mlIFGEYwPEx61tEQfUlKoiCoMCgvnQa9KGIgm6prIgOrdUsu9Mao/uk
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAAAt5JREFUOE990mlIFGEYwPEx61tEQfUlKoiCoMCgvnQa9KGIgm6prIgOrdUsu9Mao/uk
|
||||
Qwm0UsotK0srLzowKDvddjfLbdXWaEjUckqzVdx1/j3jTkkEDfyZYdj39z7vsGGKec1/GKmEhU9VevRS
|
||||
lLCeitLDqus5PPQuzLyHf1cyh5zuWiMXYD0teKS6GuB/5VZAVHYHAzY1Zv4LLCpTa79DRSO4BXor98ov
|
||||
4P0KVU1QrUNuucGYFIMl9gADN+tdSPcEUS/Uhp8CvCjFcSUFZ85eXDkpeF6V4vsGHwW/8dyg37IQEn01
|
||||
@ -385,8 +385,8 @@
|
||||
<data name="btnExit.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAAAmVJREFUOE+lU1tsi2EY5u7//57Wrqtu7dodulI7VDY26RRzmLDZuLFgF+wCcdNLFxJ1
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAAAmVJREFUOE+lU1tsi2EY5u7//57Wrqtu7dodulI7VDY26RRzmLDZuLFgF+wCcdNLFxJ1
|
||||
oavMeQkSMaeNYKMTyw5dpqWMOWQuiFo6P0NCikZiC0Me3/dVk7ZzIXzJ8+fL+/7v872H550OYNp/nRjB
|
||||
Dp4zEhzaI3C+GFwS3tdI4Iqz7eS50+S/RfRRFks/xKBwClykRcbhjJzHeZUMVzJScd2oRVeWFp2ZGlzS
|
||||
pOCcQmD+RoEDJYkncJwgwWeJs0OrQp85EwGrGUPz8nG/tACDJRb48nMYYZtKykh28ZwnnsBJje1aJQYs
|
||||
@ -399,14 +399,11 @@
|
||||
bCVV/V4Ishh0HwgcBM6/gDFhmSjTv+IXqagSRZEQ5zgAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<data name="btnLckUlck.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA
|
||||
EnABIZuYagAAAghJREFUOE+lk9tLk2Ecx+u/6SJC6qbsACkRkUKUB7KxuVGapB1M8iKLlo1dlGHHQVrY
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA
|
||||
Em4BzAbEXgAAAghJREFUOE+lk9tLk2Ecx+u/6SJC6qbsACkRkUKUB7KxuVGapB1M8iKLlo1dlGHHQVrY
|
||||
ykPmheTmYW2NuSydx3awZUg0DKqli9mmNbdPe15h8XaAjV743rw8n+/v9/3yPGuBNf/1CYN0ND3uOPJ+
|
||||
xsOMx8WrEVsSWeXSgr2j9vJZ3xjR+TfEwz4SoZHMDPxTQ0SCXgK+fq6cr0B3RpWZwYTTTOKrC+2pkhSY
|
||||
UYRB0wMI9lOj3v13A6fJmGXvvovl0S162xrpMTbQbbxMV5OezmYd7YaLPLx9AeP1c7Q0nhXKkm1gfWxg
|
||||
@ -416,48 +413,13 @@
|
||||
Qz2xORPhp3tZMO3km+MAHTcLUCu30KTfJU0WcMicw9SdjVSW7JAbtBq0BMaMuO9txnt/O+8samb7FFJh
|
||||
IrNYW0wWsFm3gYqi7D8MNjXUlaOvVUm6VH0I7cliqW1RmMgs1haTBZyU/B6k8xr/deYna7rBU0DWSCIA
|
||||
AAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnMarkPrevPos.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAAAm5JREFUOE/V1N9PklEYB3D7j5oX4kYujUSwCeTCMBnzZy5/IqYU+PKC/MjUV0HBH6kY
|
||||
hgqJFWWOdM1y1hxUyua8SC9aF82buugmHB6/Hd/WRbr2XuRN5+y5OtvnPM95zp4zADJOdR2BpxknsQx6
|
||||
wV+2rKAAR/HH+bGE/kPQ631P3O446e1ZIw/DOyQY3CKBQJJMTn4g4+MJMjq6Try+14jFNsje3jdy/P1P
|
||||
lNzdvUJGRzbhsMcQjf7A2PgXDHo/oYf7CLtzG2Z2E7V1r6gD6HQjwqDLtUwGBtZhZZ9ibu47BnwU69uB
|
||||
484WOqybuGmMo7x6iQfLrvmEwU7bIuF6V2E2zSM4/ZVmtgu7axsd7AbabifQqF+DRvucB0s1HmHQwjwh
|
||||
LucS2ttDmPDvwUExhmbGY4Y3qK5bgUr9iAdL1JwwyDDzxGZbgEE/Bd/QZ77MNlOcx2oopq16AbkixIPF
|
||||
l+8KgywboWAUzU1+9Pbvot30Dk2Gt7hOG6GrWoK67Bkk8gdIp9NQKbuEQQsTJlZrBIYWP5xd22hupVj9
|
||||
L6xEuwCF+jHEEj/29/ehKHIJg2bTNGE6Zik4AYstidoGitGu/sZkyjCycu7xYGFhpzB4yzhFjMYAGhuG
|
||||
YbIkUV7zEhrdIlRXo5ApI5BcCuGsaAipVAoyqSUt+LGrK93pqgo31MV2FF+ZhLTwPvLyxyA+PwyReBCZ
|
||||
Ig8ys4ZxeEiQLzEJg522MKms6IfNMwOWmwbTNwOGOxZ9s1hNbOFCnlG45IMDQgwtgygrdUOj4aBU2VFU
|
||||
xEIuN0NaYMRFSStyc/XIOVeP7OwbwuC/DttTndZHyfwEqUAcJPrJM0kAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnPrevPos.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAAAqJJREFUOE+11Nsz1GEcx3H9B/0j3XTRRTNNE2MoCjnFThMbOUeOG4vdikJb2ZyKqW21
|
||||
hUZc2MHKMK0I01iHQgwt5Vg5LbvsmHfLjFXTr67W75lnnovfzGs+n+eZ+R4CnBz67YCO3A7Fdtva0znZ
|
||||
kv5nnXZ3JyoiYqfP3+u3lgcPylUfeVg7hrrpyx9p9hKqtOMUVhlIVXbt/xdK+LRhlIyyXmSqIcybVqYX
|
||||
N6jvmNndOyX3wKHJdXQ9P5CVtHK7SIM4qcB2a/sPa6+saRxBqx9FUtKDZWubqtZpalrH6eifR1rylj1w
|
||||
YtZC39ga1xRvIDIW2SnPNUHwcd0gTZ2jJD1oY9O6zfySBV33FHefGwjLqraDS6Ytxr6aSSnsQJtyg3Me
|
||||
gVZBsLjGQJdhkrg72l3wRYuRsroROgzzRGRr7ODCkpWJWTPxBTpa9e9x9RIJV1ZUdtM3PM0VWTUr61bW
|
||||
zFbeDcyRVdbJJckTO7hi3mRqYYPom69Jk+bg4hEoDOZU6DGMTCOWVrK6YcVsu8cPn1dRaPoJTlDawfYB
|
||||
E7M/LYRnqlkxHUYi9xIGM4tbmFlcRny9nMVVK8aFTRo6F8hXD+IblWcHh43fbQlNhKSWUv4qAw+/IGEw
|
||||
Nb+KbzbwYnIx7YPL1OnnUVZ/Ik3RzPnIXKTKRlT1XRS/1NteXYco4R5HRidwS5IKg/G3VBjnloiRVXAh
|
||||
JhfngEQ8Q7IRS9R4hGQRllZKUGwe3mFynP0TcQ1KwltVy5mQWGHwsqSUVZOFyZlldF1GNNpB5PdrCE0s
|
||||
4IRPHEddRESnF6J81oi6Xk9b7xiFqmaCYxTCYHh6CeEZjwhNLcIvKhf/KNsLBiZz0vcqx89Gcsw9zHZG
|
||||
4xKQjJsoHR+xHFGs4t+go2biAc5DB03uX5vZMUQuZEGBAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnSetLock.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALDQAA
|
||||
Cw0B7QfALAAAAlRJREFUOE+lk+lLVFEYxuu/6UOE5IfKFkiJkJSiXMjEUUtN0solxTLJrflghq1TaWbj
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALBAAA
|
||||
CwQBG8oqrQAAAlRJREFUOE+lk+lLVFEYxuu/6UOE5IfKFkiJkJSiXMjEUUtN0solxTLJrflghq1TaWbj
|
||||
mg4hOeNuw7iUe+bMuIVEYpBNaoy51Dj315wbqXeSCLrwfjmc5/c8z8u5W4Et//UJwMYZGTBFfZgwM2Hu
|
||||
5W1PG10tz2nQFVFTnBfgflc233ho6TPGTFr7WZodx2m3Is33INlamB0t5UnBZQrzkg+7QxSAsaEuFm0W
|
||||
pqyN3MiIJTdFRVbiKaa7c5jpyyAnKcSlVyZWAAY7DEhfe8lMCCElym+XuHzptK9n2cPrSONppMUc/Tug
|
||||
@ -473,8 +435,8 @@
|
||||
<data name="btnReleaseLck.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA
|
||||
EnABIZuYagAAAghJREFUOE+lk9tLk2Ecx+u/6SJC6qbsACkRkUKUB7KxuVGapB1M8iKLlo1dlGHHQVrY
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA
|
||||
Em4BzAbEXgAAAghJREFUOE+lk9tLk2Ecx+u/6SJC6qbsACkRkUKUB7KxuVGapB1M8iKLlo1dlGHHQVrY
|
||||
ykPmheTmYW2NuSydx3awZUg0DKqli9mmNbdPe15h8XaAjV743rw8n+/v9/3yPGuBNf/1CYN0ND3uOPJ+
|
||||
xsOMx8WrEVsSWeXSgr2j9vJZ3xjR+TfEwz4SoZHMDPxTQ0SCXgK+fq6cr0B3RpWZwYTTTOKrC+2pkhSY
|
||||
UYRB0wMI9lOj3v13A6fJmGXvvovl0S162xrpMTbQbbxMV5OezmYd7YaLPLx9AeP1c7Q0nhXKkm1gfWxg
|
||||
@ -484,13 +446,51 @@
|
||||
Qz2xORPhp3tZMO3km+MAHTcLUCu30KTfJU0WcMicw9SdjVSW7JAbtBq0BMaMuO9txnt/O+8samb7FFJh
|
||||
IrNYW0wWsFm3gYqi7D8MNjXUlaOvVUm6VH0I7cliqW1RmMgs1haTBZyU/B6k8xr/deYna7rBU0DWSCIA
|
||||
AAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<data name="btnMarkPrevPos.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAAAm5JREFUOE/V1N9PklEYB3D7j5oX4kYujUSwCeTCMBnzZy5/IqYU+PKC/MjUV0HBH6kY
|
||||
hgqJFWWOdM1y1hxUyua8SC9aF82buugmHB6/Hd/WRbr2XuRN5+y5OtvnPM95zp4zADJOdR2BpxknsQx6
|
||||
wV+2rKAAR/HH+bGE/kPQ631P3O446e1ZIw/DOyQY3CKBQJJMTn4g4+MJMjq6Try+14jFNsje3jdy/P1P
|
||||
lNzdvUJGRzbhsMcQjf7A2PgXDHo/oYf7CLtzG2Z2E7V1r6gD6HQjwqDLtUwGBtZhZZ9ibu47BnwU69uB
|
||||
484WOqybuGmMo7x6iQfLrvmEwU7bIuF6V2E2zSM4/ZVmtgu7axsd7AbabifQqF+DRvucB0s1HmHQwjwh
|
||||
LucS2ttDmPDvwUExhmbGY4Y3qK5bgUr9iAdL1JwwyDDzxGZbgEE/Bd/QZ77MNlOcx2oopq16AbkixIPF
|
||||
l+8KgywboWAUzU1+9Pbvot30Dk2Gt7hOG6GrWoK67Bkk8gdIp9NQKbuEQQsTJlZrBIYWP5xd22hupVj9
|
||||
L6xEuwCF+jHEEj/29/ehKHIJg2bTNGE6Zik4AYstidoGitGu/sZkyjCycu7xYGFhpzB4yzhFjMYAGhuG
|
||||
YbIkUV7zEhrdIlRXo5ApI5BcCuGsaAipVAoyqSUt+LGrK93pqgo31MV2FF+ZhLTwPvLyxyA+PwyReBCZ
|
||||
Ig8ys4ZxeEiQLzEJg522MKms6IfNMwOWmwbTNwOGOxZ9s1hNbOFCnlG45IMDQgwtgygrdUOj4aBU2VFU
|
||||
xEIuN0NaYMRFSStyc/XIOVeP7OwbwuC/DttTndZHyfwEqUAcJPrJM0kAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnPrevPos.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAAAqJJREFUOE+11Nsz1GEcx3H9B/0j3XTRRTNNE2MoCjnFThMbOUeOG4vdikJb2ZyKqW21
|
||||
hUZc2MHKMK0I01iHQgwt5Vg5LbvsmHfLjFXTr67W75lnnovfzGs+n+eZ+R4CnBz67YCO3A7Fdtva0znZ
|
||||
kv5nnXZ3JyoiYqfP3+u3lgcPylUfeVg7hrrpyx9p9hKqtOMUVhlIVXbt/xdK+LRhlIyyXmSqIcybVqYX
|
||||
N6jvmNndOyX3wKHJdXQ9P5CVtHK7SIM4qcB2a/sPa6+saRxBqx9FUtKDZWubqtZpalrH6eifR1rylj1w
|
||||
YtZC39ga1xRvIDIW2SnPNUHwcd0gTZ2jJD1oY9O6zfySBV33FHefGwjLqraDS6Ytxr6aSSnsQJtyg3Me
|
||||
gVZBsLjGQJdhkrg72l3wRYuRsroROgzzRGRr7ODCkpWJWTPxBTpa9e9x9RIJV1ZUdtM3PM0VWTUr61bW
|
||||
zFbeDcyRVdbJJckTO7hi3mRqYYPom69Jk+bg4hEoDOZU6DGMTCOWVrK6YcVsu8cPn1dRaPoJTlDawfYB
|
||||
E7M/LYRnqlkxHUYi9xIGM4tbmFlcRny9nMVVK8aFTRo6F8hXD+IblWcHh43fbQlNhKSWUv4qAw+/IGEw
|
||||
Nb+KbzbwYnIx7YPL1OnnUVZ/Ik3RzPnIXKTKRlT1XRS/1NteXYco4R5HRidwS5IKg/G3VBjnloiRVXAh
|
||||
JhfngEQ8Q7IRS9R4hGQRllZKUGwe3mFynP0TcQ1KwltVy5mQWGHwsqSUVZOFyZlldF1GNNpB5PdrCE0s
|
||||
4IRPHEddRESnF6J81oi6Xk9b7xiFqmaCYxTCYHh6CeEZjwhNLcIvKhf/KNsLBiZz0vcqx89Gcsw9zHZG
|
||||
4xKQjJsoHR+xHFGs4t+go2biAc5DB03uX5vZMUQuZEGBAAAAAElFTkSuQmCC
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnAnnoDetailsPushPin.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA
|
||||
EnABIZuYagAAAkFJREFUOE9j/P//PwNFAGQAKTgvL48RWT1ezQ0NDVKFhYUC+CzAakBrS4t2Y2Pjkqam
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA
|
||||
Em4BzAbEXgAAAkFJREFUOE9j/P//PwNFAGQAKTgvL48RWT1ezQ0NDVKFhYUC+CzAakBrS4t2Y2Pjkqam
|
||||
pjmTJ08uALI7QIZ0dXVxJyUlqYLY3d3dgmDvw0zv6OoFO621tVWytLR05Y4dO/7fvHnzzdevX38vWbLk
|
||||
f3FxsUFkZGRAXV1d7+nTp+uAhu8sKiriY2jv7OavqWvSamnrYu/qmSBRWV0dOm/+/A+/f/8Gmvf//67d
|
||||
u//fvHXrf2NT04KWlpZT58+f/wISP3bs2H+g94oZauvrw1evXT9ry9bty9vau47WNTQuW7Fy5f8XL178
|
||||
@ -506,8 +506,8 @@
|
||||
<data name="btnAnnoDetailsPushPin.PressedImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAAScAAA
|
||||
EnABIZuYagAAAnlJREFUOE9j/P//PwMMVFZWsv/69StSQUEhWkVFxfnz58+Mz58//3j06NGL58+fX8rN
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbgAA
|
||||
Em4BzAbEXgAAAnlJREFUOE9j/P//PwMMVFZWsv/69StSQUEhWkVFxfnz58+Mz58//3j06NGL58+fX8rN
|
||||
zb34woUL3+EaQAyQAch4zZo1M1++fPkTKPb/y5cv/8+cOfO/ra3tv4GBwU5NTU1DR0dHZmT1KJqnT5/O
|
||||
unTp0kygAW8+fPjw/8qVK/9Xr179v7y84r+zs/NmXV1dfS1NTdwG5Ofn88bFxYVOnTr15Nq1a/+0tLT8
|
||||
z83N++/r6/fS1NSs2tjEmA/dxRheSEtL401JSalesXLlG6Br/ufnF/wHar6lp29Q7eDkpIjXgNLSUuXq
|
||||
@ -521,14 +521,11 @@
|
||||
rkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<metadata name="superTooltip1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>17, 17</value>
|
||||
</metadata>
|
||||
<data name="btnSrchRslt.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALCgAA
|
||||
CwoBv0NmUwAAAkNJREFUOE+d0l1IU2EYB/AZXSR0GV10bRclXWRdRB8kk5TIMV3iFgWC1FhgZbNlBNY2
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAALAQAA
|
||||
CwEBNnBPWwAAAkNJREFUOE+d0l1IU2EYB/AZXSR0GV10bRclXWRdRB8kk5TIMV3iFgWC1FhgZbNlBNY2
|
||||
KqEwzbkMwpVzKyoWeswuXNOWy8yZ8zPXyMlcbbbvj+NZ24x/74JC7BjSgQfOxfv+zv95zpMFgKN60LW+
|
||||
KH9X0ez8At/1xb8tGqc3B4KRjRuysz/lbM1rquBtpzirPRmg941Nrm6nxrpMQwmj9SOMU07cowZwsUkP
|
||||
geRaoPxM/YnMObbilElubGnWdL43DY7/8NEMPEwSzhiDUR8Nauor5JoeFB6vTR0S1eSwAiaLTaPr7Iu7
|
||||
@ -556,11 +553,14 @@
|
||||
<metadata name="itemAnnotationsBindingSource.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
|
||||
<value>156, 17</value>
|
||||
</metadata>
|
||||
<metadata name="tabControlPanelLD.Locked" type="System.Boolean, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<value>True</value>
|
||||
</metadata>
|
||||
<data name="btnSimStpsRslt.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASbQAA
|
||||
Em0BYb/lMwAAAKRJREFUOE/NlNEOgCAIRcv55P//ay8u61owJE03aavGJgInuC7XlNJi+gBoaaawPK1l
|
||||
YQUAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAlwSFlzAAASawAA
|
||||
EmsB4byhqAAAAKRJREFUOE/NlNEOgCAIRcv55P//ay8u61owJE03aavGJgInuC7XlNJi+gBoaaawPK1l
|
||||
dwUwuLBpO8XgtxbHHmfc0nGH3vkU98hGACqAL+NYFzk9YP5AvIoArQGLnBEgCuSoukPEyegsmiPXivUe
|
||||
+YB2gVrTN38YKCF6rf1mh1IXWmM0Aug4xYZGNulQCi0PYVrD6VNu/Vqj+w8NrS6J726b33Z4AFzeFLS3
|
||||
F5viAAAAAElFTkSuQmCC
|
||||
|
@ -184,7 +184,7 @@ namespace VEPROMS
|
||||
this.ppBtnOK.TabIndex = 15;
|
||||
this.ppBtnOK.Text = "OK";
|
||||
this.ppBtnOK.UseVisualStyleBackColor = true;
|
||||
this.ppBtnOK.Click += new System.EventHandler(this.btnFlderPropOK_Click);
|
||||
this.ppBtnOK.Click += new System.EventHandler(this.btnVersionsPropOK_Click);
|
||||
//
|
||||
// ppBtnDefaultChgBar
|
||||
//
|
||||
|
@ -33,29 +33,30 @@ namespace VEPROMS
|
||||
private bool _DefaultDisableDuplex = false;
|
||||
//
|
||||
private bool _Initializing;
|
||||
private DocVersionConfig _DocVersionConfig;
|
||||
private DocVersionConfig _DocVersionConfig;
|
||||
|
||||
public frmVersionsProperties(DocVersionConfig docVersionConfig)
|
||||
{
|
||||
_DocVersionConfig = docVersionConfig;
|
||||
_Initializing = true;
|
||||
InitializeComponent();
|
||||
btnGeneral.PerformClick(); // always start with General tab or button
|
||||
_Initializing = false;
|
||||
//build the caption
|
||||
this.Text = string.Format("{0} Properties",_DocVersionConfig.Name);
|
||||
}
|
||||
public frmVersionsProperties(DocVersionConfig docVersionConfig)
|
||||
{
|
||||
_DocVersionConfig = docVersionConfig;
|
||||
_Initializing = true;
|
||||
InitializeComponent();
|
||||
btnGeneral.PerformClick(); // always start with General tab or button
|
||||
_Initializing = false;
|
||||
//build the caption
|
||||
this.Text = string.Format("{0} Properties", _DocVersionConfig.Name);
|
||||
}
|
||||
|
||||
private void btnFlderPropOK_Click(object sender, EventArgs e)
|
||||
private void btnVersionsPropOK_Click(object sender, EventArgs e)
|
||||
{
|
||||
docVersionConfigBindingSource.EndEdit();
|
||||
// Save Default settings for User
|
||||
//
|
||||
// Save whether we should display the default values on this property page
|
||||
Settings.Default.ShowDefaultVersionProp = ppCbShwDefSettings.Checked;
|
||||
Settings.Default.Save();
|
||||
DialogResult = DialogResult.OK;
|
||||
this.Close();
|
||||
docVersionConfigBindingSource.EndEdit();
|
||||
// Save Default settings for User
|
||||
//
|
||||
// Save whether we should display the default values on this property page
|
||||
Settings.Default.ShowDefaultVersionProp = ppCbShwDefSettings.Checked;
|
||||
Settings.Default.Save();
|
||||
DialogResult = DialogResult.OK;
|
||||
_DocVersionConfig.MyDocVersion.Save().Dispose();
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void btnFldrPropCancel_Click(object sender, EventArgs e)
|
||||
@ -199,7 +200,7 @@ namespace VEPROMS
|
||||
ppCmbxProcSetType.ValueMember = "EValue";
|
||||
ppCmbxProcSetType.Enabled = false; // maybe enable this if used for version creation
|
||||
|
||||
documentInfoListBindingSource.DataSource = DocumentInfoList.GetLibraries();
|
||||
documentInfoListBindingSource.DataSource = DocumentInfoList.GetLibraries(false);
|
||||
}
|
||||
|
||||
#region General tab
|
||||
|
Loading…
x
Reference in New Issue
Block a user