C2022-009 New link to Error folder

This commit is contained in:
2023-12-27 20:51:32 -05:00
parent 3ad6dea425
commit b6cbb97d7d
3 changed files with 1589 additions and 1533 deletions

View File

@@ -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)
{