Compare commits
6 Commits
1c6ac4ac6a
...
5112c7caff
Author | SHA1 | Date | |
---|---|---|---|
5112c7caff | |||
de8249b584 | |||
3116729507 | |||
dd1a8dea33 | |||
8496d70756 | |||
9beeee2aac |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -44,8 +44,17 @@ using System.Runtime.InteropServices;
|
||||
// Revision DHH (day - no leading zero, two digit hour - military time
|
||||
//
|
||||
// ********* REMEMBER TO CHECK THE AssemblyConfiguration SETTING (ABOVE) ********
|
||||
[assembly: AssemblyVersion("2.1.2311.3014")]
|
||||
[assembly: AssemblyFileVersion("2.1.2311.3014")]
|
||||
[assembly: AssemblyVersion("2.1.2402.509")]
|
||||
[assembly: AssemblyFileVersion("2.1.2402.509")]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
26
PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs
generated
26
PROMS/VEPROMS User Interface/frmVEPROMS.Designer.cs
generated
@ -36,6 +36,8 @@ namespace VEPROMS
|
||||
this.btnShortCuts = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnHelpVWeb = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnSendErrorLog = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnShowErrFld = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnShowPrtFld = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.btnHelpAbout = new DevComponents.DotNetBar.ButtonItem();
|
||||
this.office2007StartButton1 = new DevComponents.DotNetBar.Office2007StartButton();
|
||||
this.itemContainer1 = new DevComponents.DotNetBar.ItemContainer();
|
||||
@ -210,7 +212,9 @@ namespace VEPROMS
|
||||
this.btnShortCuts,
|
||||
this.btnHelpVWeb,
|
||||
this.btnSendErrorLog,
|
||||
this.btnHelpAbout});
|
||||
this.btnShowErrFld,
|
||||
this.btnShowPrtFld,
|
||||
this.btnHelpAbout}); ;
|
||||
this.btnHelp.Text = "Help";
|
||||
//
|
||||
// btnHelpManual
|
||||
@ -244,6 +248,24 @@ namespace VEPROMS
|
||||
this.btnSendErrorLog.Text = "Send Error Log";
|
||||
this.btnSendErrorLog.Click += new System.EventHandler(this.btnSendErrorLog_Click);
|
||||
//
|
||||
// btnShowErrFld
|
||||
//
|
||||
//this.btnShowErrFld.Image = global::VEPROMS.Properties.Resources.GoToParentFolderHS;
|
||||
this.btnShowErrFld.Image = ((System.Drawing.Image)(resources.GetObject("btnShowErrFld.Image")));
|
||||
this.btnShowErrFld.Name = "btnShowErrFld";
|
||||
this.btnShowErrFld.Text = "Open Log Folder";
|
||||
this.btnShowErrFld.Click += new System.EventHandler(this.btnShowErrFld_Click);
|
||||
//
|
||||
// btnShowPrtFld
|
||||
//
|
||||
//this.btnShowPrtFld.Image = global::VEPROMS.Properties.Resources.GoToParentFolderHS;
|
||||
this.btnShowPrtFld.Image = ((System.Drawing.Image)(resources.GetObject("btnShowPrtFld.Image")));
|
||||
this.btnShowPrtFld.Name = "btnShowPrtFld";
|
||||
this.btnShowPrtFld.Text = "Open Default Print Folder";
|
||||
this.btnShowPrtFld.Click += new System.EventHandler(this.btnShowPrtFld_Click);
|
||||
//
|
||||
//
|
||||
//
|
||||
// btnHelpAbout
|
||||
//
|
||||
this.btnHelpAbout.ButtonStyle = DevComponents.DotNetBar.eButtonStyle.ImageAndText;
|
||||
@ -1733,6 +1755,8 @@ namespace VEPROMS
|
||||
private DevComponents.DotNetBar.TabItem infotabFoldoutMaint;
|
||||
private Volian.Controls.Library.DisplayFoldoutMaint displayFoldoutMaint;
|
||||
private DevComponents.DotNetBar.ButtonItem btnSendErrorLog;
|
||||
private DevComponents.DotNetBar.ButtonItem btnShowErrFld;
|
||||
private DevComponents.DotNetBar.ButtonItem btnShowPrtFld;
|
||||
private DevComponents.DotNetBar.TabControlPanel tabControlPanel3;
|
||||
private DevComponents.DotNetBar.TabItem toosTabReports;
|
||||
private Volian.Controls.Library.DisplayReports displayReports;
|
||||
|
@ -21,6 +21,7 @@ using DescriptiveEnum;
|
||||
using Volian.Base.Library;
|
||||
using Volian.Print.Library;
|
||||
using JR.Utils.GUI.Forms;
|
||||
using System.Diagnostics;
|
||||
|
||||
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
|
||||
|
||||
@ -4932,6 +4933,26 @@ namespace VEPROMS
|
||||
}
|
||||
}
|
||||
|
||||
private void btnShowErrFld_Click(object sender, EventArgs e)
|
||||
{
|
||||
string path = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
|
||||
path = path + @"\Documents\VEPROMS";
|
||||
if (Directory.Exists(path))
|
||||
{
|
||||
Process.Start("explorer.exe", path);
|
||||
}
|
||||
}
|
||||
|
||||
private void btnShowPrtFld_Click(object sender, EventArgs e)
|
||||
{
|
||||
string path = Environment.GetFolderPath(Environment.SpecialFolder.UserProfile);
|
||||
path = path + @"\AppData\Local\Temp\VEPROMS";
|
||||
if (Directory.Exists(path))
|
||||
{
|
||||
Process.Start("explorer.exe", path);
|
||||
}
|
||||
}
|
||||
|
||||
private void btnHelpManual_Click(object sender, EventArgs e)
|
||||
{
|
||||
// C2019-024 Display the PROMS User Manual when user click on the option in the Help drop down menu
|
||||
|
@ -170,6 +170,18 @@
|
||||
rkJggg==
|
||||
</value>
|
||||
</data>
|
||||
<data name="btnShowErrFld.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAANUlEQVR4nGNgoBR8ahL8jw1/bBTooMiAT8Qa8gmPAUQZ8n+Z3n9KMMOoAf9Hw0CPCmEw4AAA71z+QhwwNhoAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
|
||||
<data name="btnShowPrtFld.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAAsTAAALEwEAmpwYAAAANUlEQVR4nGNgoBR8ahL8jw1/bBTooMiAT8Qa8gmPAUQZ8n+Z3n9KMMOoAf9Hw0CPCmEw4AAA71z+QhwwNhoAAAAASUVORK5CYII=
|
||||
</value>
|
||||
</data>
|
||||
|
||||
<data name="btnHelpAbout.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>
|
||||
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6
|
||||
|
Loading…
x
Reference in New Issue
Block a user