Added button to convert MSWord sections to DocX

This commit is contained in:
Rich
2016-09-13 21:11:28 +00:00
parent f989e52a13
commit 54334cc233
2 changed files with 56 additions and 2 deletions

View File

@@ -79,6 +79,7 @@ namespace VEPROMS
this.ppLblDefaultNumColumns = new System.Windows.Forms.Label();
this.ppCbDefaultStepSection = new System.Windows.Forms.CheckBox();
this.txbxTOC_Group_Title = new DevComponents.DotNetBar.Controls.TextBoxX();
this.ppBtnConvertToDocX = new DevComponents.DotNetBar.ButtonX();
this.panSectBtns = new System.Windows.Forms.Panel();
this.btnAutomation = new DevComponents.DotNetBar.ButtonX();
this.btnLibDocs = new DevComponents.DotNetBar.ButtonX();
@@ -751,6 +752,19 @@ namespace VEPROMS
"all will be grouped under this title.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
this.txbxTOC_Group_Title.TabIndex = 54;
//
// btnConvertToDocX
//
this.ppBtnConvertToDocX.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
this.ppBtnConvertToDocX.Location = new System.Drawing.Point(17, 271);
this.ppBtnConvertToDocX.Margin = new System.Windows.Forms.Padding(2);
this.ppBtnConvertToDocX.Name = "btnConvertToDocX";
this.ppBtnConvertToDocX.Size = new System.Drawing.Size(209, 36);
this.superTooltip1.SetSuperTooltip(this.ppBtnConvertToDocX, 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)));
this.ppBtnConvertToDocX.TabIndex = 42;
this.ppBtnConvertToDocX.Text = "Convert to DocX";
this.ppBtnConvertToDocX.Click += new System.EventHandler(this.ppBtnConvertToDocX_Click);
//
// panSectBtns
//
this.panSectBtns.BackColor = System.Drawing.Color.Transparent;
@@ -1064,6 +1078,7 @@ namespace VEPROMS
this.tcpGeneral.Controls.Add(this.ppTxtBxUserID);
this.tcpGeneral.Controls.Add(this.lblUserID);
this.tcpGeneral.Controls.Add(this.lblLastModDate);
this.tcpGeneral.Controls.Add(this.ppBtnConvertToDocX);
this.tcpGeneral.DisabledBackColor = System.Drawing.Color.Empty;
this.tcpGeneral.Dock = System.Windows.Forms.DockStyle.Fill;
this.tcpGeneral.Location = new System.Drawing.Point(0, 22);
@@ -1557,5 +1572,6 @@ namespace VEPROMS
private DevComponents.DotNetBar.Controls.GroupPanel gpTOC;
private DevComponents.DotNetBar.LabelX labelX1;
private DevComponents.DotNetBar.Controls.TextBoxX txbxTOC_Group_Title;
private DevComponents.DotNetBar.ButtonX ppBtnConvertToDocX;
}
}