C2022-009 New link to Error folder
This commit is contained in:
@@ -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)]
|
||||
|
||||
@@ -4896,11 +4897,26 @@ namespace VEPROMS
|
||||
_MyLog.Error(str, ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#region (Lock stuff / used for multi-user support)
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
public class TabItemsToClose : Stack<DisplayTabItem>
|
||||
private void btnHelp_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
#region (Lock stuff / used for multi-user support)
|
||||
|
||||
public class TabItemsToClose : Stack<DisplayTabItem>
|
||||
{
|
||||
public void PushDTI(DisplayTabItem dti)
|
||||
{
|
||||
|
Reference in New Issue
Block a user