Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b7c30e1cd | |||
| 670e5d7fa9 | |||
| 8258235611 | |||
| 4d97f29943 | |||
| ab8d59eb2d | |||
| c324fa69b2 | |||
| 1cdb9b4cc2 | |||
| f47fa49b80 |
+118
-40
@@ -456,7 +456,7 @@ namespace Baseline
|
||||
switch (myLast)
|
||||
{
|
||||
case LastWas.Pagination:
|
||||
line = OpenPDF(line);
|
||||
OpenPDF(line);
|
||||
break;
|
||||
case LastWas.Baseline: // TODO: Need to add code here to open matching file
|
||||
OpenOnePDF(myLine,1);
|
||||
@@ -479,7 +479,7 @@ namespace Baseline
|
||||
switch (myLast)
|
||||
{
|
||||
case LastWas.Pagination:
|
||||
line = OpenPDF(line);
|
||||
OpenPDF(line);
|
||||
break;
|
||||
case LastWas.Baseline: // TODO: Need to add code here to open matching file
|
||||
OpenOnePDF(myLine,2);
|
||||
@@ -491,34 +491,99 @@ namespace Baseline
|
||||
break;
|
||||
}
|
||||
}
|
||||
string exePath;
|
||||
private string OpenPDF(string line)
|
||||
|
||||
/// <summary>
|
||||
/// This will return the full path to the PDF file
|
||||
/// </summary>
|
||||
/// <param name="fi"></param>
|
||||
/// <param name="patern"></param>
|
||||
/// <returns></returns>
|
||||
private string GetPFDFileAndPath(FileInfo fi, string patern)
|
||||
{
|
||||
int page = int.Parse(line.Substring(0, 6));
|
||||
string[] fileList = Directory.GetFiles(fi.DirectoryName, patern);
|
||||
// sort the list of file list
|
||||
Array.Sort((string[])fileList);
|
||||
return fileList.First(); // the PDF file that we what should be top of the list then.
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// This will parse out the procedure number for the PROMS ShortPath representation of a procedure section or step part
|
||||
/// In the PROMS ShortPath, ".S" is used to delimit the procedure number, section then uses "..S" for the step parts
|
||||
/// This method was written to handle cases where ".S" is used as part of the procedure number
|
||||
/// </summary>
|
||||
/// <param name="txt"></param>
|
||||
/// <returns></returns>
|
||||
private string ParseOutProcedureNumberFromLine(string txt)
|
||||
{
|
||||
// old logic was looking for the first occurence of ".S" in the txt string as the ending point of the procedure nuumber
|
||||
// Beaver Valley has a procedure number "1.SBGEN" in which the old logic would not work
|
||||
// 1.SBGEN.SC. ==> short path of attachment section "C"
|
||||
// 1.SBGEN.SC..S1. ==> short path of Step 1 in attachment section "C"
|
||||
string rtnstr = null;
|
||||
int lidx = -1;
|
||||
// if the item is to a high levels step or sub-step the short path as "..S" for each part of the step
|
||||
// so look for the last occurence of ".." which will be the end of the section information
|
||||
lidx = txt.LastIndexOf("..");
|
||||
if (lidx > 0)
|
||||
{
|
||||
lidx = txt.LastIndexOf(".S", lidx); // this will position us to the end of the procedure number
|
||||
}
|
||||
else
|
||||
{
|
||||
lidx = txt.LastIndexOf(".S"); // this will position us to the end of the procedure number if there was no step information
|
||||
}
|
||||
// B2018-113 - Replace slashes and backslashes with underscores just as PROMS does when creating a PDF file.
|
||||
line = line.Substring(8, line.IndexOf(".S") - 8).Replace("/", "_").Replace("\\", "_");
|
||||
rtnstr = txt.Substring(8, lidx - 8).Replace("/", "_").Replace("\\", "_");
|
||||
return rtnstr;
|
||||
}
|
||||
|
||||
string exePath;
|
||||
private void OpenPDF(string line)
|
||||
{
|
||||
int pageNum = int.Parse(line.Substring(0, 6));
|
||||
// B2018-113 - Replace slashes and backslashes with underscores just as PROMS does when creating a PDF file.
|
||||
string ProcNum = ParseOutProcedureNumberFromLine(line);
|
||||
string procPatern = string.Format("*{0}*.pdf", string.IsNullOrEmpty(line) ? "noProcNumber" : ProcNum);
|
||||
|
||||
FindFile ff = lbDifferent.SelectedItem as FindFile;
|
||||
FileInfo fi1 = new FileInfo(ff.File1);
|
||||
FileInfo fi2 = new FileInfo(ff.File2);
|
||||
string PDFfileName1 = GetPFDFileAndPath(fi1,procPatern);
|
||||
string PDFfileName2 = GetPFDFileAndPath(fi2,procPatern);
|
||||
if (string.IsNullOrEmpty(PDFfileName1) || string.IsNullOrEmpty(PDFfileName2)) return;
|
||||
|
||||
// If you don't know where the Reader executable is for PDFs Open a PDF and Check to see where the path points
|
||||
if (exePath == null)
|
||||
{
|
||||
System.Diagnostics.Process p = System.Diagnostics.Process.Start(fi1.DirectoryName + "\\" + line + ".pdf");
|
||||
exePath = TryToGetPath(p);
|
||||
p.Kill(); // No need to keep it open
|
||||
try
|
||||
{
|
||||
System.Diagnostics.Process p = System.Diagnostics.Process.Start(PDFfileName1);
|
||||
exePath = TryToGetPath(p);
|
||||
p.Kill(); // No need to keep it open
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Application.DoEvents();
|
||||
string msg = string.Format("{0} - {1}", ex.GetType().Name, ex.Message);
|
||||
Console.WriteLine(msg);
|
||||
MessageBox.Show(msg, "Error opening default PDF Viewer");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Open the first PDF on a Specific Page
|
||||
System.Diagnostics.ProcessStartInfo psi1 = new System.Diagnostics.ProcessStartInfo(exePath, string.Format("/A page={0} ", page) + fi1.DirectoryName + "\\" + line + ".pdf ");
|
||||
System.Diagnostics.ProcessStartInfo psi1 = new System.Diagnostics.ProcessStartInfo(exePath, string.Format(" /A \"page={0}\" \"{1}\" ", pageNum,PDFfileName1));
|
||||
System.Diagnostics.Process p1 = System.Diagnostics.Process.Start(psi1);
|
||||
// Move the PDF Reader window to 0,0
|
||||
MoveProcess(p1, 0, 0);
|
||||
// Open the first PDF on a Specific Page
|
||||
System.Diagnostics.ProcessStartInfo psi2 = new System.Diagnostics.ProcessStartInfo(exePath, string.Format("/A page={0} ", page) + fi2.DirectoryName + "\\" + line + ".pdf ");
|
||||
|
||||
// Open the second PDF on a Specific Page
|
||||
System.Diagnostics.ProcessStartInfo psi2 = new System.Diagnostics.ProcessStartInfo(exePath, string.Format(" /A \"page={0}\" \"{1}\" ", pageNum, PDFfileName2));
|
||||
System.Diagnostics.Process p2 = System.Diagnostics.Process.Start(psi2);
|
||||
// Move the PDF Reader window to 960,0
|
||||
// TODO: This Offset could be a Setting
|
||||
MoveProcess(p2, 960, 0);
|
||||
return line;
|
||||
return;
|
||||
}
|
||||
/// <summary>
|
||||
/// Try to get the location of the PDF Reader executable
|
||||
@@ -530,7 +595,7 @@ namespace Baseline
|
||||
p.WaitForInputIdle();
|
||||
while (p.MainModule == null)
|
||||
{
|
||||
Console.WriteLine("{0} - {1}", p.MainWindowTitle,p.ProcessName);
|
||||
Console.WriteLine("{0} - {1}", p.MainWindowTitle, p.ProcessName);
|
||||
p.WaitForInputIdle();
|
||||
Application.DoEvents();
|
||||
}
|
||||
@@ -594,40 +659,52 @@ namespace Baseline
|
||||
/// <param name="list"></param>
|
||||
private void OpenOnePDF(Line myLine, int list)
|
||||
{
|
||||
if (myLine == null) return; // no PDF to open
|
||||
// B2018-113 - Replace slashes and backslashes with underscores just as PROMS does when creating a PDF file.
|
||||
string proc = myLine.MyProc.Number.Replace("/","_").Replace("\\","_");
|
||||
|
||||
// if no procedure number, PROMS creates pdf filename "NoProcNumber.pdf"
|
||||
// create pattern to use to get the PDF from the directory
|
||||
// add wildcards (*) to file the file if any prefix or suffix was added to the filename
|
||||
string procPatern = string.Format("*{0}*.pdf", proc == string.Empty ? "noProcNumber" : proc);
|
||||
int pagenum = myLine.MyPage.Number;
|
||||
FindFile ff = lbDifferent.SelectedItem as FindFile;
|
||||
FileInfo fi1 = new FileInfo(ff.File1);
|
||||
FileInfo fi2 = new FileInfo(ff.File2);
|
||||
if (exePath == null)
|
||||
{
|
||||
System.Diagnostics.Process p = System.Diagnostics.Process.Start(fi1.DirectoryName + "\\" + proc + ".pdf");
|
||||
while (exePath == null)
|
||||
{
|
||||
try
|
||||
{
|
||||
|
||||
exePath = p.MainModule.FileName;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Application.DoEvents();
|
||||
Console.WriteLine("{0} - {1}", ex.GetType().Name, ex.Message);
|
||||
}
|
||||
}
|
||||
p.Kill();
|
||||
}
|
||||
string PDFfileName = null;
|
||||
if (list == 1)
|
||||
{
|
||||
System.Diagnostics.ProcessStartInfo psi1 = new System.Diagnostics.ProcessStartInfo(exePath, string.Format("/A page={0} ", pagenum) + fi1.DirectoryName + "\\" + proc + ".pdf ");
|
||||
System.Diagnostics.Process p1 = System.Diagnostics.Process.Start(psi1);
|
||||
FileInfo fi1 = new FileInfo(ff.File1);
|
||||
PDFfileName = GetPFDFileAndPath(fi1, procPatern);
|
||||
}
|
||||
else
|
||||
else // list == 2
|
||||
{
|
||||
System.Diagnostics.ProcessStartInfo psi2 = new System.Diagnostics.ProcessStartInfo(exePath, string.Format("/A page={0} ", pagenum) + fi2.DirectoryName + "\\" + proc + ".pdf ");
|
||||
System.Diagnostics.Process p1 = System.Diagnostics.Process.Start(psi2);
|
||||
FileInfo fi2 = new FileInfo(ff.File2);
|
||||
PDFfileName = GetPFDFileAndPath(fi2, procPatern);
|
||||
}
|
||||
if (string.IsNullOrEmpty(PDFfileName)) return; // no PDF to open
|
||||
|
||||
// if exePath is null, then open the found PDF with the default PDF viewer and
|
||||
// capture/save the entire name and path of the default PDF viewer
|
||||
if (exePath == null)
|
||||
{
|
||||
try
|
||||
{
|
||||
System.Diagnostics.Process tp = System.Diagnostics.Process.Start(PDFfileName);
|
||||
exePath = TryToGetPath(tp);
|
||||
tp.Kill();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
Application.DoEvents();
|
||||
string msg = string.Format("{0} - {1}", ex.GetType().Name, ex.Message);
|
||||
Console.WriteLine(msg);
|
||||
MessageBox.Show(msg, "Error opening default PDF Viewer");
|
||||
return;
|
||||
}
|
||||
}
|
||||
// open the PDF and jump to the page number
|
||||
System.Diagnostics.ProcessStartInfo psi1 = new System.Diagnostics.ProcessStartInfo(exePath, string.Format("/A \"page={0}\" \"{1}\" ", pagenum,PDFfileName));
|
||||
psi1.UseShellExecute = false;
|
||||
System.Diagnostics.Process p1 = System.Diagnostics.Process.Start(psi1);
|
||||
}
|
||||
/// <summary>
|
||||
/// Perform Debug Meta file comparison for all of the folders within the automated testing folders
|
||||
@@ -709,11 +786,12 @@ namespace Baseline
|
||||
private void lbProcedures_SelectedIndexChanged(object sender, EventArgs e)
|
||||
{
|
||||
//Initialize Results List Box
|
||||
lbResults1.Items.Clear();
|
||||
Procedure myProc = lbProcedures.SelectedItem as Procedure;
|
||||
if (myProc == null) return; // clicked on the white space (blank line) in the list of different procedures
|
||||
//TODO: May need to consider if there are duplicate procedure numers and titles
|
||||
Procedure myProc1 = MyProcs1.Find(x => x.Number == myProc.Number && x.Title == myProc.Title);
|
||||
// Build the results ListBox for the left window
|
||||
lbResults1.Items.Clear();
|
||||
if (myProc1 != null)
|
||||
{
|
||||
foreach (Page myPage in myProc1.MyPages)
|
||||
|
||||
+169
-164
@@ -94,6 +94,15 @@ namespace Volian.Controls.Library
|
||||
this.label2 = new System.Windows.Forms.Label();
|
||||
this.cbxAnnoTypes = new DevComponents.DotNetBar.Controls.ComboBoxEx();
|
||||
this.tabAnnotationSearch = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.btnTranCvtSelToTxt = new System.Windows.Forms.Button();
|
||||
this.lblIncTran = new System.Windows.Forms.Label();
|
||||
this.btnTranCvtAllToTxt = new System.Windows.Forms.Button();
|
||||
this.lblSrchIncTran = new System.Windows.Forms.Label();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.rbFromEditor = new System.Windows.Forms.RadioButton();
|
||||
this.rbFromTree = new System.Windows.Forms.RadioButton();
|
||||
this.tabIncTrans = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.contextMenuBar1 = new DevComponents.DotNetBar.ContextMenuBar();
|
||||
this.btnCMIFindText = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnCMEdit = new DevComponents.DotNetBar.ButtonItem();
|
||||
@@ -112,15 +121,6 @@ namespace Volian.Controls.Library
|
||||
this.btnAND = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnOR = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnNOT = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.tabIncTrans = new DevComponents.DotNetBar.TabItem(this.components);
|
||||
this.tabControlPanel1 = new DevComponents.DotNetBar.TabControlPanel();
|
||||
this.btnTranCvtSelToTxt = new System.Windows.Forms.Button();
|
||||
this.lblIncTran = new System.Windows.Forms.Label();
|
||||
this.btnTranCvtAllToTxt = new System.Windows.Forms.Button();
|
||||
this.lblSrchIncTran = new System.Windows.Forms.Label();
|
||||
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
||||
this.rbFromEditor = new System.Windows.Forms.RadioButton();
|
||||
this.rbFromTree = new System.Windows.Forms.RadioButton();
|
||||
this.advTreeProcSets = new DevComponents.AdvTree.AdvTree();
|
||||
this.elementStyle1 = new DevComponents.DotNetBar.ElementStyle();
|
||||
this.node1 = new DevComponents.AdvTree.Node();
|
||||
@@ -168,9 +168,9 @@ namespace Volian.Controls.Library
|
||||
this.tabControlPanel3.SuspendLayout();
|
||||
this.gpSrchAnnoText.SuspendLayout();
|
||||
this.panel4.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
|
||||
this.tabControlPanel1.SuspendLayout();
|
||||
this.groupBox1.SuspendLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.advTreeProcSets)).BeginInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.advTreeStepTypes)).BeginInit();
|
||||
this.grpPanSearchResults.SuspendLayout();
|
||||
@@ -197,7 +197,7 @@ namespace Volian.Controls.Library
|
||||
this.tabSearchTypes.SelectedTabFont = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold);
|
||||
this.tabSearchTypes.SelectedTabIndex = 0;
|
||||
this.tabSearchTypes.ShowFocusRectangle = false;
|
||||
this.tabSearchTypes.Size = new System.Drawing.Size(317, 147);
|
||||
this.tabSearchTypes.Size = new System.Drawing.Size(277, 147);
|
||||
this.tabSearchTypes.Style = DevComponents.DotNetBar.eTabStripStyle.Office2007Document;
|
||||
this.tabSearchTypes.TabIndex = 0;
|
||||
this.tabSearchTypes.TabLayoutType = DevComponents.DotNetBar.eTabLayoutType.FixedWithNavigationBox;
|
||||
@@ -221,7 +221,7 @@ namespace Volian.Controls.Library
|
||||
this.tabControlPanel4.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabControlPanel4.Name = "tabControlPanel4";
|
||||
this.tabControlPanel4.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel4.Size = new System.Drawing.Size(317, 113);
|
||||
this.tabControlPanel4.Size = new System.Drawing.Size(277, 113);
|
||||
this.tabControlPanel4.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel4.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel4.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
@@ -245,7 +245,7 @@ namespace Volian.Controls.Library
|
||||
this.gpSrchText.Location = new System.Drawing.Point(23, 1);
|
||||
this.gpSrchText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.gpSrchText.Name = "gpSrchText";
|
||||
this.gpSrchText.Size = new System.Drawing.Size(293, 91);
|
||||
this.gpSrchText.Size = new System.Drawing.Size(253, 91);
|
||||
//
|
||||
//
|
||||
//
|
||||
@@ -286,7 +286,7 @@ namespace Volian.Controls.Library
|
||||
this.panel1.Location = new System.Drawing.Point(0, -3);
|
||||
this.panel1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.panel1.Name = "panel1";
|
||||
this.panel1.Size = new System.Drawing.Size(287, 23);
|
||||
this.panel1.Size = new System.Drawing.Size(247, 23);
|
||||
this.panel1.TabIndex = 5;
|
||||
//
|
||||
// cbxTextSearchText
|
||||
@@ -298,10 +298,10 @@ namespace Volian.Controls.Library
|
||||
this.cbxTextSearchText.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxTextSearchText.FormattingEnabled = true;
|
||||
this.cbxTextSearchText.ItemHeight = 16;
|
||||
this.cbxTextSearchText.Location = new System.Drawing.Point(36, 0);
|
||||
this.cbxTextSearchText.Location = new System.Drawing.Point(30, 0);
|
||||
this.cbxTextSearchText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTextSearchText.Name = "cbxTextSearchText";
|
||||
this.cbxTextSearchText.Size = new System.Drawing.Size(251, 22);
|
||||
this.cbxTextSearchText.Size = new System.Drawing.Size(217, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxTextSearchText, new DevComponents.DotNetBar.SuperTooltipInfo("Search for Text", "", resources.GetString("cbxTextSearchText.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxTextSearchText.TabIndex = 2;
|
||||
this.cbxTextSearchText.WatermarkFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
@@ -319,7 +319,7 @@ namespace Volian.Controls.Library
|
||||
this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label1.Name = "label1";
|
||||
this.label1.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
|
||||
this.label1.Size = new System.Drawing.Size(36, 21);
|
||||
this.label1.Size = new System.Drawing.Size(30, 18);
|
||||
this.superTooltip1.SetSuperTooltip(this.label1, new DevComponents.DotNetBar.SuperTooltipInfo("Search For Text", "", resources.GetString("label1.SuperTooltip"), null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.label1.TabIndex = 4;
|
||||
this.label1.Text = "Find:";
|
||||
@@ -336,7 +336,7 @@ namespace Volian.Controls.Library
|
||||
this.panel3.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||||
this.panel3.Location = new System.Drawing.Point(0, 20);
|
||||
this.panel3.Name = "panel3";
|
||||
this.panel3.Size = new System.Drawing.Size(287, 65);
|
||||
this.panel3.Size = new System.Drawing.Size(247, 65);
|
||||
this.panel3.TabIndex = 6;
|
||||
//
|
||||
// cbxByWord
|
||||
@@ -468,7 +468,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxSrchTypeUsage.Location = new System.Drawing.Point(1, 92);
|
||||
this.cbxSrchTypeUsage.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxSrchTypeUsage.Name = "cbxSrchTypeUsage";
|
||||
this.cbxSrchTypeUsage.Size = new System.Drawing.Size(315, 20);
|
||||
this.cbxSrchTypeUsage.Size = new System.Drawing.Size(275, 20);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxSrchTypeUsage, new DevComponents.DotNetBar.SuperTooltipInfo("Find Selected Step Elements", "", "This option will have Search show you where the selected Step Elements are used.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbxSrchTypeUsage.TabIndex = 4;
|
||||
this.cbxSrchTypeUsage.Text = " Find Selected Step Elements";
|
||||
@@ -495,7 +495,7 @@ namespace Volian.Controls.Library
|
||||
this.tabControlPanel5.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabControlPanel5.Name = "tabControlPanel5";
|
||||
this.tabControlPanel5.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel5.Size = new System.Drawing.Size(317, 113);
|
||||
this.tabControlPanel5.Size = new System.Drawing.Size(277, 113);
|
||||
this.tabControlPanel5.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel5.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel5.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
@@ -533,7 +533,7 @@ namespace Volian.Controls.Library
|
||||
this.pnlTranCategory.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pnlTranCategory.Name = "pnlTranCategory";
|
||||
this.pnlTranCategory.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.pnlTranCategory.Size = new System.Drawing.Size(315, 21);
|
||||
this.pnlTranCategory.Size = new System.Drawing.Size(275, 21);
|
||||
this.pnlTranCategory.TabIndex = 2;
|
||||
//
|
||||
// cbxTranCategory
|
||||
@@ -542,7 +542,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxTranCategory.Location = new System.Drawing.Point(57, 1);
|
||||
this.cbxTranCategory.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTranCategory.Name = "cbxTranCategory";
|
||||
this.cbxTranCategory.Size = new System.Drawing.Size(255, 21);
|
||||
this.cbxTranCategory.Size = new System.Drawing.Size(215, 21);
|
||||
this.cbxTranCategory.TabIndex = 1;
|
||||
this.cbxTranCategory.WatermarkText = "Select Category of Transitions";
|
||||
//
|
||||
@@ -567,7 +567,7 @@ namespace Volian.Controls.Library
|
||||
this.pnlTranFormat.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pnlTranFormat.Name = "pnlTranFormat";
|
||||
this.pnlTranFormat.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.pnlTranFormat.Size = new System.Drawing.Size(315, 21);
|
||||
this.pnlTranFormat.Size = new System.Drawing.Size(275, 21);
|
||||
this.pnlTranFormat.TabIndex = 1;
|
||||
//
|
||||
// cbxTranFormat
|
||||
@@ -576,7 +576,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxTranFormat.Location = new System.Drawing.Point(57, 1);
|
||||
this.cbxTranFormat.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTranFormat.Name = "cbxTranFormat";
|
||||
this.cbxTranFormat.Size = new System.Drawing.Size(255, 21);
|
||||
this.cbxTranFormat.Size = new System.Drawing.Size(215, 21);
|
||||
this.cbxTranFormat.TabIndex = 1;
|
||||
this.cbxTranFormat.WatermarkText = "Select Style of Transitions";
|
||||
//
|
||||
@@ -601,7 +601,7 @@ namespace Volian.Controls.Library
|
||||
this.pnlTranVersion.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.pnlTranVersion.Name = "pnlTranVersion";
|
||||
this.pnlTranVersion.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.pnlTranVersion.Size = new System.Drawing.Size(315, 21);
|
||||
this.pnlTranVersion.Size = new System.Drawing.Size(275, 21);
|
||||
this.pnlTranVersion.TabIndex = 0;
|
||||
//
|
||||
// cbxTranVersion
|
||||
@@ -610,7 +610,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxTranVersion.Location = new System.Drawing.Point(52, 1);
|
||||
this.cbxTranVersion.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTranVersion.Name = "cbxTranVersion";
|
||||
this.cbxTranVersion.Size = new System.Drawing.Size(260, 21);
|
||||
this.cbxTranVersion.Size = new System.Drawing.Size(220, 21);
|
||||
this.cbxTranVersion.TabIndex = 1;
|
||||
this.cbxTranVersion.WatermarkText = "Select Format for Transitions";
|
||||
//
|
||||
@@ -643,7 +643,7 @@ namespace Volian.Controls.Library
|
||||
this.tabControlPanel2.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabControlPanel2.Name = "tabControlPanel2";
|
||||
this.tabControlPanel2.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel2.Size = new System.Drawing.Size(317, 113);
|
||||
this.tabControlPanel2.Size = new System.Drawing.Size(277, 113);
|
||||
this.tabControlPanel2.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel2.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel2.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
@@ -666,7 +666,7 @@ namespace Volian.Controls.Library
|
||||
this.gpFindROs.Location = new System.Drawing.Point(1, 21);
|
||||
this.gpFindROs.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.gpFindROs.Name = "gpFindROs";
|
||||
this.gpFindROs.Size = new System.Drawing.Size(315, 91);
|
||||
this.gpFindROs.Size = new System.Drawing.Size(275, 91);
|
||||
//
|
||||
//
|
||||
//
|
||||
@@ -767,7 +767,7 @@ namespace Volian.Controls.Library
|
||||
this.cmboTreeROs.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cmboTreeROs.Name = "cmboTreeROs";
|
||||
this.cmboTreeROs.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cmboTreeROs.Size = new System.Drawing.Size(315, 20);
|
||||
this.cmboTreeROs.Size = new System.Drawing.Size(275, 20);
|
||||
this.superTooltip1.SetSuperTooltip(this.cmboTreeROs, new DevComponents.DotNetBar.SuperTooltipInfo("Select the RO to Search", "", "Select the Referenced Object to search for.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cmboTreeROs.TabIndex = 1;
|
||||
this.cmboTreeROs.ThemeAware = true;
|
||||
@@ -791,7 +791,7 @@ namespace Volian.Controls.Library
|
||||
this.tabControlPanel3.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.tabControlPanel3.Name = "tabControlPanel3";
|
||||
this.tabControlPanel3.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel3.Size = new System.Drawing.Size(317, 113);
|
||||
this.tabControlPanel3.Size = new System.Drawing.Size(277, 113);
|
||||
this.tabControlPanel3.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel3.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel3.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
@@ -814,7 +814,7 @@ namespace Volian.Controls.Library
|
||||
this.gpSrchAnnoText.Location = new System.Drawing.Point(1, 23);
|
||||
this.gpSrchAnnoText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.gpSrchAnnoText.Name = "gpSrchAnnoText";
|
||||
this.gpSrchAnnoText.Size = new System.Drawing.Size(315, 89);
|
||||
this.gpSrchAnnoText.Size = new System.Drawing.Size(275, 89);
|
||||
//
|
||||
//
|
||||
//
|
||||
@@ -858,7 +858,7 @@ namespace Volian.Controls.Library
|
||||
this.panel4.Location = new System.Drawing.Point(0, 0);
|
||||
this.panel4.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.panel4.Name = "panel4";
|
||||
this.panel4.Size = new System.Drawing.Size(309, 62);
|
||||
this.panel4.Size = new System.Drawing.Size(269, 62);
|
||||
this.panel4.TabIndex = 9;
|
||||
//
|
||||
// cbxRnoOnlyAnnot
|
||||
@@ -905,7 +905,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxCaseSensitiveAnnoText.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxCaseSensitiveAnnoText.Name = "cbxCaseSensitiveAnnoText";
|
||||
this.cbxCaseSensitiveAnnoText.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbxCaseSensitiveAnnoText.Size = new System.Drawing.Size(109, 17);
|
||||
this.cbxCaseSensitiveAnnoText.Size = new System.Drawing.Size(92, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxCaseSensitiveAnnoText, new DevComponents.DotNetBar.SuperTooltipInfo("Case Sensitive", "", "When this box is checked, Search will find only exact mactches of the search text" +
|
||||
" you had entered.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 100)));
|
||||
this.cbxCaseSensitiveAnnoText.TabIndex = 5;
|
||||
@@ -920,11 +920,11 @@ namespace Volian.Controls.Library
|
||||
this.cbxTextSearchAnnotation.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.cbxTextSearchAnnotation.FormattingEnabled = true;
|
||||
this.cbxTextSearchAnnotation.ItemHeight = 16;
|
||||
this.cbxTextSearchAnnotation.Location = new System.Drawing.Point(36, 0);
|
||||
this.cbxTextSearchAnnotation.Location = new System.Drawing.Point(30, 0);
|
||||
this.cbxTextSearchAnnotation.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxTextSearchAnnotation.Name = "cbxTextSearchAnnotation";
|
||||
this.cbxTextSearchAnnotation.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbxTextSearchAnnotation.Size = new System.Drawing.Size(273, 22);
|
||||
this.cbxTextSearchAnnotation.Size = new System.Drawing.Size(239, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxTextSearchAnnotation, new DevComponents.DotNetBar.SuperTooltipInfo("Search For Annotaion Text", "", "Enter Annotation text to search for or select from the dropdown list.\r\n\r\nLeave Bl" +
|
||||
"ank to search for occurences of the selected annotation.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(180, 140)));
|
||||
this.cbxTextSearchAnnotation.TabIndex = 6;
|
||||
@@ -943,7 +943,7 @@ namespace Volian.Controls.Library
|
||||
this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
|
||||
this.label2.Name = "label2";
|
||||
this.label2.Padding = new System.Windows.Forms.Padding(0, 5, 0, 0);
|
||||
this.label2.Size = new System.Drawing.Size(36, 21);
|
||||
this.label2.Size = new System.Drawing.Size(30, 18);
|
||||
this.label2.TabIndex = 7;
|
||||
this.label2.Text = "Find:";
|
||||
//
|
||||
@@ -960,7 +960,7 @@ namespace Volian.Controls.Library
|
||||
this.cbxAnnoTypes.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbxAnnoTypes.Name = "cbxAnnoTypes";
|
||||
this.cbxAnnoTypes.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbxAnnoTypes.Size = new System.Drawing.Size(315, 22);
|
||||
this.cbxAnnoTypes.Size = new System.Drawing.Size(275, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbxAnnoTypes, new DevComponents.DotNetBar.SuperTooltipInfo("Select Annotation Type", "", "Select the type of annotation to search for.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(192, 61)));
|
||||
this.cbxAnnoTypes.TabIndex = 0;
|
||||
this.cbxAnnoTypes.WatermarkText = "Select AnnotationType to Search";
|
||||
@@ -974,6 +974,118 @@ namespace Volian.Controls.Library
|
||||
this.tabAnnotationSearch.Text = "Annotations";
|
||||
this.tabAnnotationSearch.Click += new System.EventHandler(this.tabAnnotationSearch_Click);
|
||||
//
|
||||
// tabControlPanel1
|
||||
//
|
||||
this.tabControlPanel1.Controls.Add(this.btnTranCvtSelToTxt);
|
||||
this.tabControlPanel1.Controls.Add(this.lblIncTran);
|
||||
this.tabControlPanel1.Controls.Add(this.btnTranCvtAllToTxt);
|
||||
this.tabControlPanel1.Controls.Add(this.lblSrchIncTran);
|
||||
this.tabControlPanel1.Controls.Add(this.groupBox1);
|
||||
this.tabControlPanel1.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.tabControlPanel1.Location = new System.Drawing.Point(0, 34);
|
||||
this.tabControlPanel1.Name = "tabControlPanel1";
|
||||
this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel1.Size = new System.Drawing.Size(277, 113);
|
||||
this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
|
||||
this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanel1.Style.GradientAngle = 90;
|
||||
this.tabControlPanel1.TabIndex = 17;
|
||||
this.tabControlPanel1.TabItem = this.tabIncTrans;
|
||||
this.tabControlPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(( System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.tabControlPanel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
//
|
||||
// btnTranCvtSelToTxt
|
||||
//
|
||||
this.btnTranCvtSelToTxt.Enabled = false;
|
||||
this.btnTranCvtSelToTxt.Location = new System.Drawing.Point(121, 63);
|
||||
this.btnTranCvtSelToTxt.Name = "btnTranCvtSelToTxt";
|
||||
this.btnTranCvtSelToTxt.Size = new System.Drawing.Size(145, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnTranCvtSelToTxt, new DevComponents.DotNetBar.SuperTooltipInfo("Convert Selected Incoming Transitions To Text", "", "Converts selected transitions in the results list to text unless the user does no" +
|
||||
"t have permission to change text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 90)));
|
||||
this.btnTranCvtSelToTxt.TabIndex = 3;
|
||||
this.btnTranCvtSelToTxt.Text = "Convert Selected To Text";
|
||||
this.btnTranCvtSelToTxt.UseVisualStyleBackColor = true;
|
||||
this.btnTranCvtSelToTxt.Click += new System.EventHandler(this.btnTranCvtSelToTxt_Click);
|
||||
//
|
||||
// lblIncTran
|
||||
//
|
||||
this.lblIncTran.AutoSize = true;
|
||||
this.lblIncTran.Location = new System.Drawing.Point(4, 9);
|
||||
this.lblIncTran.Name = "lblIncTran";
|
||||
this.lblIncTran.Size = new System.Drawing.Size(23, 13);
|
||||
this.lblIncTran.TabIndex = 2;
|
||||
this.lblIncTran.Text = "To:";
|
||||
//
|
||||
// btnTranCvtAllToTxt
|
||||
//
|
||||
this.btnTranCvtAllToTxt.Enabled = false;
|
||||
this.btnTranCvtAllToTxt.Location = new System.Drawing.Point(6, 63);
|
||||
this.btnTranCvtAllToTxt.Name = "btnTranCvtAllToTxt";
|
||||
this.btnTranCvtAllToTxt.Size = new System.Drawing.Size(109, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnTranCvtAllToTxt, new DevComponents.DotNetBar.SuperTooltipInfo("Convert All Incoming Transitions To Text", "", "Converts all of the transitions in the results list to text unless the user does " +
|
||||
"not have permission to change text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 90)));
|
||||
this.btnTranCvtAllToTxt.TabIndex = 1;
|
||||
this.btnTranCvtAllToTxt.Text = "Convert All To Text";
|
||||
this.btnTranCvtAllToTxt.UseVisualStyleBackColor = true;
|
||||
this.btnTranCvtAllToTxt.Click += new System.EventHandler(this.btnTranCvtAllToTxt_Click);
|
||||
//
|
||||
// lblSrchIncTran
|
||||
//
|
||||
this.lblSrchIncTran.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lblSrchIncTran.Location = new System.Drawing.Point(34, 9);
|
||||
this.lblSrchIncTran.Name = "lblSrchIncTran";
|
||||
this.lblSrchIncTran.Size = new System.Drawing.Size(239, 40);
|
||||
this.superTooltip1.SetSuperTooltip(this.lblSrchIncTran, new DevComponents.DotNetBar.SuperTooltipInfo("Incoming Transitions", "", "This is the step, section, or procedure for which incoming transitions to it are " +
|
||||
"shown in the list.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 80)));
|
||||
this.lblSrchIncTran.TabIndex = 1;
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.groupBox1.Controls.Add(this.rbFromEditor);
|
||||
this.groupBox1.Controls.Add(this.rbFromTree);
|
||||
this.groupBox1.Location = new System.Drawing.Point(147, 4);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(130, 57);
|
||||
this.groupBox1.TabIndex = 0;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "Search Selection";
|
||||
this.groupBox1.Visible = false;
|
||||
//
|
||||
// rbFromEditor
|
||||
//
|
||||
this.rbFromEditor.AutoSize = true;
|
||||
this.rbFromEditor.Location = new System.Drawing.Point(22, 34);
|
||||
this.rbFromEditor.Name = "rbFromEditor";
|
||||
this.rbFromEditor.Size = new System.Drawing.Size(78, 17);
|
||||
this.rbFromEditor.TabIndex = 1;
|
||||
this.rbFromEditor.TabStop = true;
|
||||
this.rbFromEditor.Text = "From Editor";
|
||||
this.rbFromEditor.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// rbFromTree
|
||||
//
|
||||
this.rbFromTree.AutoSize = true;
|
||||
this.rbFromTree.Location = new System.Drawing.Point(22, 16);
|
||||
this.rbFromTree.Name = "rbFromTree";
|
||||
this.rbFromTree.Size = new System.Drawing.Size(73, 17);
|
||||
this.rbFromTree.TabIndex = 0;
|
||||
this.rbFromTree.TabStop = true;
|
||||
this.rbFromTree.Text = "From Tree";
|
||||
this.rbFromTree.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// tabIncTrans
|
||||
//
|
||||
this.tabIncTrans.AttachedControl = this.tabControlPanel1;
|
||||
this.tabIncTrans.Name = "tabIncTrans";
|
||||
this.superTooltip1.SetSuperTooltip(this.tabIncTrans, new DevComponents.DotNetBar.SuperTooltipInfo("Search for Incoming Transitions", "", "Finds the Incoming Transitions that point to the current item and convert the tra" +
|
||||
"nsition(s) to text if desired and if have permissions.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 120)));
|
||||
this.tabIncTrans.Text = "Incoming\nTransitions";
|
||||
//
|
||||
// contextMenuBar1
|
||||
//
|
||||
this.contextMenuBar1.DockSide = DevComponents.DotNetBar.eDockSide.Top;
|
||||
@@ -984,7 +1096,7 @@ namespace Volian.Controls.Library
|
||||
this.contextMenuBar1.Location = new System.Drawing.Point(225, -3);
|
||||
this.contextMenuBar1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.contextMenuBar1.Name = "contextMenuBar1";
|
||||
this.contextMenuBar1.Size = new System.Drawing.Size(56, 29);
|
||||
this.contextMenuBar1.Size = new System.Drawing.Size(56, 25);
|
||||
this.contextMenuBar1.Stretch = true;
|
||||
this.contextMenuBar1.Style = DevComponents.DotNetBar.eDotNetBarStyle.Office2003;
|
||||
this.contextMenuBar1.TabIndex = 6;
|
||||
@@ -1136,119 +1248,6 @@ namespace Volian.Controls.Library
|
||||
this.btnNOT.Text = "NOT";
|
||||
this.btnNOT.Click += new System.EventHandler(this.btnNOT_Click);
|
||||
//
|
||||
// tabIncTrans
|
||||
//
|
||||
this.tabIncTrans.AttachedControl = this.tabControlPanel1;
|
||||
this.tabIncTrans.Name = "tabIncTrans";
|
||||
this.superTooltip1.SetSuperTooltip(this.tabIncTrans, new DevComponents.DotNetBar.SuperTooltipInfo("Search for Incoming Transitions", "", "Finds the Incoming Transitions that point to the current item and convert the tra" +
|
||||
"nsition(s) to text if desired and if have permissions.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 120)));
|
||||
this.tabIncTrans.Text = "Incoming\nTransitions";
|
||||
//
|
||||
// tabControlPanel1
|
||||
//
|
||||
this.tabControlPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.tabControlPanel1.Controls.Add(this.btnTranCvtSelToTxt);
|
||||
this.tabControlPanel1.Controls.Add(this.lblIncTran);
|
||||
this.tabControlPanel1.Controls.Add(this.btnTranCvtAllToTxt);
|
||||
this.tabControlPanel1.Controls.Add(this.lblSrchIncTran);
|
||||
this.tabControlPanel1.Controls.Add(this.groupBox1);
|
||||
this.tabControlPanel1.DisabledBackColor = System.Drawing.Color.Empty;
|
||||
this.tabControlPanel1.Location = new System.Drawing.Point(0, 34);
|
||||
this.tabControlPanel1.Name = "tabControlPanel1";
|
||||
this.tabControlPanel1.Padding = new System.Windows.Forms.Padding(1);
|
||||
this.tabControlPanel1.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.tabControlPanel1.Size = new System.Drawing.Size(317, 113);
|
||||
this.tabControlPanel1.Style.BackColor1.Color = System.Drawing.Color.FromArgb(((int)(((byte)(253)))), ((int)(((byte)(253)))), ((int)(((byte)(254)))));
|
||||
this.tabControlPanel1.Style.BackColor2.Color = System.Drawing.Color.FromArgb(((int)(((byte)(157)))), ((int)(((byte)(188)))), ((int)(((byte)(227)))));
|
||||
this.tabControlPanel1.Style.Border = DevComponents.DotNetBar.eBorderType.SingleLine;
|
||||
this.tabControlPanel1.Style.BorderColor.Color = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(165)))), ((int)(((byte)(199)))));
|
||||
this.tabControlPanel1.Style.BorderSide = ((DevComponents.DotNetBar.eBorderSide)(((DevComponents.DotNetBar.eBorderSide.Left | DevComponents.DotNetBar.eBorderSide.Right)
|
||||
| DevComponents.DotNetBar.eBorderSide.Bottom)));
|
||||
this.tabControlPanel1.Style.GradientAngle = 90;
|
||||
this.tabControlPanel1.TabIndex = 17;
|
||||
this.tabControlPanel1.TabItem = this.tabIncTrans;
|
||||
//
|
||||
// btnTranCvtSelToTxt
|
||||
//
|
||||
this.btnTranCvtSelToTxt.Enabled = false;
|
||||
this.btnTranCvtSelToTxt.Location = new System.Drawing.Point(121, 63);
|
||||
this.btnTranCvtSelToTxt.Name = "btnTranCvtSelToTxt";
|
||||
this.btnTranCvtSelToTxt.Size = new System.Drawing.Size(145, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnTranCvtSelToTxt, new DevComponents.DotNetBar.SuperTooltipInfo("Convert Selected Incoming Transitions To Text", "", "Converts selected transitions in the results list to text unless the user does no" +
|
||||
"t have permission to change text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 90)));
|
||||
this.btnTranCvtSelToTxt.TabIndex = 3;
|
||||
this.btnTranCvtSelToTxt.Text = "Convert Selected To Text";
|
||||
this.btnTranCvtSelToTxt.UseVisualStyleBackColor = true;
|
||||
this.btnTranCvtSelToTxt.Click += new System.EventHandler(this.btnTranCvtSelToTxt_Click);
|
||||
//
|
||||
// lblIncTran
|
||||
//
|
||||
this.lblIncTran.AutoSize = true;
|
||||
this.lblIncTran.Location = new System.Drawing.Point(4, 9);
|
||||
this.lblIncTran.Name = "lblIncTran";
|
||||
this.lblIncTran.Size = new System.Drawing.Size(24, 15);
|
||||
this.lblIncTran.TabIndex = 2;
|
||||
this.lblIncTran.Text = "To:";
|
||||
//
|
||||
// btnTranCvtAllToTxt
|
||||
//
|
||||
this.btnTranCvtAllToTxt.Enabled = false;
|
||||
this.btnTranCvtAllToTxt.Location = new System.Drawing.Point(6, 63);
|
||||
this.btnTranCvtAllToTxt.Name = "btnTranCvtAllToTxt";
|
||||
this.btnTranCvtAllToTxt.Size = new System.Drawing.Size(109, 22);
|
||||
this.superTooltip1.SetSuperTooltip(this.btnTranCvtAllToTxt, new DevComponents.DotNetBar.SuperTooltipInfo("Convert All Incoming Transitions To Text", "", "Converts all of the transitions in the results list to text unless the user does " +
|
||||
"not have permission to change text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 90)));
|
||||
this.btnTranCvtAllToTxt.TabIndex = 1;
|
||||
this.btnTranCvtAllToTxt.Text = "Convert All To Text";
|
||||
this.btnTranCvtAllToTxt.UseVisualStyleBackColor = true;
|
||||
this.btnTranCvtAllToTxt.Click += new System.EventHandler(this.btnTranCvtAllToTxt_Click);
|
||||
//
|
||||
// lblSrchIncTran
|
||||
//
|
||||
this.lblSrchIncTran.BackColor = System.Drawing.Color.Transparent;
|
||||
this.lblSrchIncTran.Location = new System.Drawing.Point(34, 9);
|
||||
this.lblSrchIncTran.Name = "lblSrchIncTran";
|
||||
this.lblSrchIncTran.Size = new System.Drawing.Size(239, 40);
|
||||
this.superTooltip1.SetSuperTooltip(this.lblSrchIncTran, new DevComponents.DotNetBar.SuperTooltipInfo("Incoming Transitions", "", "This is the step, section, or procedure for which incoming transitions to it are " +
|
||||
"shown in the list.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray, true, true, new System.Drawing.Size(170, 80)));
|
||||
this.lblSrchIncTran.TabIndex = 1;
|
||||
//
|
||||
// groupBox1
|
||||
//
|
||||
this.groupBox1.BackColor = System.Drawing.Color.Transparent;
|
||||
this.groupBox1.Controls.Add(this.rbFromEditor);
|
||||
this.groupBox1.Controls.Add(this.rbFromTree);
|
||||
this.groupBox1.Location = new System.Drawing.Point(147, 4);
|
||||
this.groupBox1.Name = "groupBox1";
|
||||
this.groupBox1.Size = new System.Drawing.Size(130, 57);
|
||||
this.groupBox1.TabIndex = 0;
|
||||
this.groupBox1.TabStop = false;
|
||||
this.groupBox1.Text = "Search Selection";
|
||||
this.groupBox1.Visible = false;
|
||||
//
|
||||
// rbFromEditor
|
||||
//
|
||||
this.rbFromEditor.AutoSize = true;
|
||||
this.rbFromEditor.Location = new System.Drawing.Point(22, 34);
|
||||
this.rbFromEditor.Name = "rbFromEditor";
|
||||
this.rbFromEditor.Size = new System.Drawing.Size(92, 19);
|
||||
this.rbFromEditor.TabIndex = 1;
|
||||
this.rbFromEditor.TabStop = true;
|
||||
this.rbFromEditor.Text = "From Editor";
|
||||
this.rbFromEditor.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// rbFromTree
|
||||
//
|
||||
this.rbFromTree.AutoSize = true;
|
||||
this.rbFromTree.Location = new System.Drawing.Point(22, 16);
|
||||
this.rbFromTree.Name = "rbFromTree";
|
||||
this.rbFromTree.Size = new System.Drawing.Size(85, 19);
|
||||
this.rbFromTree.TabIndex = 0;
|
||||
this.rbFromTree.TabStop = true;
|
||||
this.rbFromTree.Text = "From Tree";
|
||||
this.rbFromTree.UseVisualStyleBackColor = true;
|
||||
//
|
||||
// advTreeProcSets
|
||||
//
|
||||
this.advTreeProcSets.AccessibleRole = System.Windows.Forms.AccessibleRole.Outline;
|
||||
@@ -1274,7 +1273,7 @@ namespace Volian.Controls.Library
|
||||
this.advTreeProcSets.NodeStyleSelected = this.elementStyle1;
|
||||
this.advTreeProcSets.PathSeparator = ";";
|
||||
this.advTreeProcSets.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.advTreeProcSets.Size = new System.Drawing.Size(317, 103);
|
||||
this.advTreeProcSets.Size = new System.Drawing.Size(277, 103);
|
||||
this.advTreeProcSets.Styles.Add(this.elementStyle1);
|
||||
this.advTreeProcSets.TabIndex = 0;
|
||||
this.advTreeProcSets.Text = "advTree1";
|
||||
@@ -1323,7 +1322,7 @@ namespace Volian.Controls.Library
|
||||
this.advTreeStepTypes.PathSeparator = ";";
|
||||
this.advTreeStepTypes.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.advTreeStepTypes.SelectionPerCell = true;
|
||||
this.advTreeStepTypes.Size = new System.Drawing.Size(317, 110);
|
||||
this.advTreeStepTypes.Size = new System.Drawing.Size(277, 110);
|
||||
this.advTreeStepTypes.Styles.Add(this.elementStyle2);
|
||||
this.advTreeStepTypes.TabIndex = 0;
|
||||
this.advTreeStepTypes.Text = "advTree1";
|
||||
@@ -1356,7 +1355,7 @@ namespace Volian.Controls.Library
|
||||
this.grpPanSearchResults.Location = new System.Drawing.Point(0, 461);
|
||||
this.grpPanSearchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.grpPanSearchResults.Name = "grpPanSearchResults";
|
||||
this.grpPanSearchResults.Size = new System.Drawing.Size(317, 215);
|
||||
this.grpPanSearchResults.Size = new System.Drawing.Size(277, 215);
|
||||
//
|
||||
//
|
||||
//
|
||||
@@ -1395,7 +1394,7 @@ namespace Volian.Controls.Library
|
||||
this.lbSrchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.lbSrchResults.Name = "lbSrchResults";
|
||||
this.lbSrchResults.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.lbSrchResults.Size = new System.Drawing.Size(311, 194);
|
||||
this.lbSrchResults.Size = new System.Drawing.Size(271, 194);
|
||||
this.lbSrchResults.TabIndex = 0;
|
||||
this.lbSrchResults.SelectedIndexChanged += new System.EventHandler(this.lbSrchResults_SelectedValueChanged);
|
||||
this.lbSrchResults.MouseMove += new System.Windows.Forms.MouseEventHandler(this.lbSrchResults_MouseMove);
|
||||
@@ -1407,6 +1406,7 @@ namespace Volian.Controls.Library
|
||||
//
|
||||
this.lbSrchResultsIncTrans.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
|
||||
this.lbSrchResultsIncTrans.CheckBoxesVisible = true;
|
||||
this.lbSrchResultsIncTrans.CheckStateMember = null;
|
||||
this.lbSrchResultsIncTrans.ContainerControlProcessDialogKey = true;
|
||||
this.lbSrchResultsIncTrans.Dock = System.Windows.Forms.DockStyle.Fill;
|
||||
this.lbSrchResultsIncTrans.DragDropSupport = true;
|
||||
@@ -1415,7 +1415,7 @@ namespace Volian.Controls.Library
|
||||
this.lbSrchResultsIncTrans.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.lbSrchResultsIncTrans.Name = "lbSrchResultsIncTrans";
|
||||
this.lbSrchResultsIncTrans.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.lbSrchResultsIncTrans.Size = new System.Drawing.Size(311, 194);
|
||||
this.lbSrchResultsIncTrans.Size = new System.Drawing.Size(271, 194);
|
||||
this.lbSrchResultsIncTrans.TabIndex = 0;
|
||||
this.lbSrchResultsIncTrans.SelectedIndexChanged += new System.EventHandler(this.lbSrchResults_SelectedValueChanged);
|
||||
this.lbSrchResultsIncTrans.ItemClick += new System.EventHandler(this.lbSrchResultsIncTrans_ItemClicked);
|
||||
@@ -1438,7 +1438,7 @@ namespace Volian.Controls.Library
|
||||
this.panSearchButtons.Location = new System.Drawing.Point(0, 402);
|
||||
this.panSearchButtons.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.panSearchButtons.Name = "panSearchButtons";
|
||||
this.panSearchButtons.Size = new System.Drawing.Size(317, 59);
|
||||
this.panSearchButtons.Size = new System.Drawing.Size(277, 59);
|
||||
this.panSearchButtons.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.panSearchButtons.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.panSearchButtons.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
@@ -1457,7 +1457,7 @@ namespace Volian.Controls.Library
|
||||
this.btnClearSearchResults.ColorTable = DevComponents.DotNetBar.eButtonColor.Office2007WithBackground;
|
||||
this.btnClearSearchResults.Enabled = false;
|
||||
this.btnClearSearchResults.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
||||
this.btnClearSearchResults.Location = new System.Drawing.Point(277, 3);
|
||||
this.btnClearSearchResults.Location = new System.Drawing.Point(237, 3);
|
||||
this.btnClearSearchResults.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.btnClearSearchResults.Name = "btnClearSearchResults";
|
||||
this.btnClearSearchResults.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
@@ -1531,7 +1531,7 @@ namespace Volian.Controls.Library
|
||||
this.labelX1.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.labelX1.Name = "labelX1";
|
||||
this.labelX1.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.labelX1.Size = new System.Drawing.Size(82, 17);
|
||||
this.labelX1.Size = new System.Drawing.Size(66, 14);
|
||||
this.superTooltip1.SetSuperTooltip(this.labelX1, new DevComponents.DotNetBar.SuperTooltipInfo("Results Style", "", "The Search Results list can be formatted in one of four styles: Document Path, St" +
|
||||
"ep Path, Annotation Text and Document Text.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.labelX1.TabIndex = 9;
|
||||
@@ -1588,7 +1588,7 @@ namespace Volian.Controls.Library
|
||||
this.cbSorted.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.cbSorted.Name = "cbSorted";
|
||||
this.cbSorted.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.cbSorted.Size = new System.Drawing.Size(46, 17);
|
||||
this.cbSorted.Size = new System.Drawing.Size(42, 15);
|
||||
this.superTooltip1.SetSuperTooltip(this.cbSorted, new DevComponents.DotNetBar.SuperTooltipInfo("Sort Results", "", "Sorts results that are output into the Search Results list shown below.", null, null, DevComponents.DotNetBar.eTooltipColor.Gray));
|
||||
this.cbSorted.TabIndex = 7;
|
||||
this.cbSorted.Text = "Sort";
|
||||
@@ -1651,7 +1651,7 @@ namespace Volian.Controls.Library
|
||||
this.xpSetToSearch.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.xpSetToSearch.Name = "xpSetToSearch";
|
||||
this.xpSetToSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.xpSetToSearch.Size = new System.Drawing.Size(317, 124);
|
||||
this.xpSetToSearch.Size = new System.Drawing.Size(277, 124);
|
||||
this.xpSetToSearch.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.xpSetToSearch.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.xpSetToSearch.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
@@ -1686,7 +1686,7 @@ namespace Volian.Controls.Library
|
||||
this.xpStepTypes.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.xpStepTypes.Name = "xpStepTypes";
|
||||
this.xpStepTypes.RightToLeft = System.Windows.Forms.RightToLeft.No;
|
||||
this.xpStepTypes.Size = new System.Drawing.Size(317, 131);
|
||||
this.xpStepTypes.Size = new System.Drawing.Size(277, 131);
|
||||
this.xpStepTypes.Style.Alignment = System.Drawing.StringAlignment.Center;
|
||||
this.xpStepTypes.Style.BackColor1.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
|
||||
this.xpStepTypes.Style.BackColor2.ColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
|
||||
@@ -1733,10 +1733,15 @@ namespace Volian.Controls.Library
|
||||
this.Controls.Add(this.xpSetToSearch);
|
||||
this.Controls.Add(this.tabSearchTypes);
|
||||
this.Controls.Add(this.tabControlPanel1);
|
||||
//B2025-056 Click on Incoming Transitions
|
||||
// This needs to be part of overall control
|
||||
// since if it is part of tabSearchTypes,
|
||||
// then when that is disabled, buttons on
|
||||
// this will be also
|
||||
this.Margin = new System.Windows.Forms.Padding(2);
|
||||
this.Name = "DisplaySearch";
|
||||
this.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
|
||||
this.Size = new System.Drawing.Size(317, 676);
|
||||
this.Size = new System.Drawing.Size(277, 676);
|
||||
((System.ComponentModel.ISupportInitialize)(this.tabSearchTypes)).EndInit();
|
||||
this.tabSearchTypes.ResumeLayout(false);
|
||||
this.tabControlPanel4.ResumeLayout(false);
|
||||
@@ -1755,11 +1760,11 @@ namespace Volian.Controls.Library
|
||||
this.gpSrchAnnoText.ResumeLayout(false);
|
||||
this.panel4.ResumeLayout(false);
|
||||
this.panel4.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
|
||||
this.tabControlPanel1.ResumeLayout(false);
|
||||
this.tabControlPanel1.PerformLayout();
|
||||
this.groupBox1.ResumeLayout(false);
|
||||
this.groupBox1.PerformLayout();
|
||||
((System.ComponentModel.ISupportInitialize)(this.contextMenuBar1)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.advTreeProcSets)).EndInit();
|
||||
((System.ComponentModel.ISupportInitialize)(this.advTreeStepTypes)).EndInit();
|
||||
this.grpPanSearchResults.ResumeLayout(false);
|
||||
|
||||
@@ -960,7 +960,9 @@ namespace Volian.Print.Library
|
||||
OnStatusChanged("After NewPage", PromsPrinterStatusType.NewPage);
|
||||
if (myProcedure.Sections == null)
|
||||
{
|
||||
MessageBox.Show("This procedure has no content and will not be printed.", "Empty Procedure", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
// C2026-033 if we are running baselines, don't display the empty procedure message box, instead continue on as if OK was pressed.
|
||||
if (!BaselineTesting)
|
||||
MessageBox.Show("This procedure has no content and will not be printed.", "Empty Procedure", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
ProfileTimer.Pop(profileDepth);
|
||||
// B2024-062 Added check for EmptyProcedure. This is to prevent the Try Again message
|
||||
// from appearing after the user clicks on the OK button from the Empty Procedure message
|
||||
|
||||
Reference in New Issue
Block a user