Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
d44f9ba2b6 | |||
c3b7b1e5a4 | |||
f3309e4a40 | |||
8fa059c186 |
@@ -324,29 +324,17 @@ namespace ctlXMLEditLib
|
|||||||
string ROINI = Directory.GetCurrentDirectory()+ "\\ROAPP.INI";
|
string ROINI = Directory.GetCurrentDirectory()+ "\\ROAPP.INI";
|
||||||
|
|
||||||
// Get the default file extension for graphic files
|
// Get the default file extension for graphic files
|
||||||
// DefaultGraphicFileExtension = TheIniFile.GetINIKeyValueStr("ROApp","Extention","",5,"ROAPP.INI");
|
// DefaultGraphicFileExtension = TheIniFile.GetINIKeyValueStr("ROApp","Extention","",5,"ROAPP.INI");
|
||||||
// Bug fix: B2006-025
|
// Bug fix: B2006-025
|
||||||
// needed to pass the full path of ROAPP.INI
|
// needed to pass the full path of ROAPP.INI
|
||||||
|
// B2025-007 only use the default file location (remove 16 bit PROMS location)
|
||||||
IniReader in1 = new IniReader(ROINI);
|
IniReader in1 = new IniReader(ROINI);
|
||||||
DefaultGraphicFileExtension = in1.ReadString("ROApp","Extention","");
|
DefaultGraphicFileExtension = in1.ReadString("ROApp", "Extention");
|
||||||
if (DefaultGraphicFileExtension.Equals(""))
|
if (string.IsNullOrEmpty(DefaultGraphicFileExtension)) DefaultGraphicFileExtension = in1.ReadString("ROApp", "Extension", ".TIF");
|
||||||
{
|
// if (File.Exists(PromsINI))
|
||||||
string ApplPathUp = ApplicationPath.ToUpper();
|
// DefaultGraphicFileExtension = TheIniFile.GetINIKeyValueStr("Graphics","defaultext",".TIF",5,PromsINI);
|
||||||
int idx = ApplPathUp.IndexOf("VE-PROMS.NET\\BIN");
|
// if (File.Exists("ROAPP.INI"))
|
||||||
if (idx >= 0)
|
// DefaultGraphicFileExtension = TheIniFile.GetINIKeyValueStr("ROApp","Extention",".TIF",5,"ROAPP.INI");
|
||||||
{
|
|
||||||
string PromsINI = ApplicationPath.Substring(0, idx);
|
|
||||||
PromsINI += "VE-PROMS\\VEPROMS.INI";
|
|
||||||
IniReader in2 = new IniReader(PromsINI);
|
|
||||||
DefaultGraphicFileExtension = in2.ReadString("Graphics", "defaultext", ".TIF");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
DefaultGraphicFileExtension = ".TIF";
|
|
||||||
}
|
|
||||||
// if (File.Exists(PromsINI))
|
|
||||||
// DefaultGraphicFileExtension = TheIniFile.GetINIKeyValueStr("Graphics","defaultext",".TIF",5,PromsINI);
|
|
||||||
// if (File.Exists("ROAPP.INI"))
|
|
||||||
// DefaultGraphicFileExtension = TheIniFile.GetINIKeyValueStr("ROApp","Extention",".TIF",5,"ROAPP.INI");
|
|
||||||
if (!DefaultGraphicFileExtension.StartsWith("."))
|
if (!DefaultGraphicFileExtension.StartsWith("."))
|
||||||
DefaultGraphicFileExtension = "." + DefaultGraphicFileExtension;
|
DefaultGraphicFileExtension = "." + DefaultGraphicFileExtension;
|
||||||
|
|
||||||
@@ -1484,12 +1472,15 @@ namespace ctlXMLEditLib
|
|||||||
if (fnamebox.Text != "" && fnamebox.Modified == true)
|
if (fnamebox.Text != "" && fnamebox.Modified == true)
|
||||||
{
|
{
|
||||||
FileInfo ifi = new FileInfo(fnamebox.Text);
|
FileInfo ifi = new FileInfo(fnamebox.Text);
|
||||||
if (ifi.Exists == false)
|
if (ifi.Exists == false)
|
||||||
{
|
{
|
||||||
MessageBoxButtons buttons = MessageBoxButtons.OK;
|
FileInfo ifi2 = new FileInfo(fnamebox.Text + DefaultGraphicFileExtension);
|
||||||
MessageBox.Show( "File does not exist.",
|
if (!ifi2.Exists)
|
||||||
"File Input Error", buttons);
|
{
|
||||||
return;
|
MessageBox.Show("File does not exist.",
|
||||||
|
"File Input Error", MessageBoxButtons.OK);
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
bool ok = ValidGraphicsFile(fnamebox.Text);
|
bool ok = ValidGraphicsFile(fnamebox.Text);
|
||||||
if (ok != true)
|
if (ok != true)
|
||||||
|
@@ -587,6 +587,13 @@ namespace Volian.Controls.Library
|
|||||||
|
|
||||||
if (forceReload || RoTreeNeedsReloaded || tvROFST.Nodes == null || tvROFST.Nodes.Count <= 0)
|
if (forceReload || RoTreeNeedsReloaded || tvROFST.Nodes == null || tvROFST.Nodes.Count <= 0)
|
||||||
{
|
{
|
||||||
|
//B2025-008
|
||||||
|
//in cases where a RO table is clicked on
|
||||||
|
//it will refresh the list
|
||||||
|
//temp store what the ROID was before the list refreshes
|
||||||
|
//so can go to it after the refresh
|
||||||
|
string tmpROID = CurROLink?.ROID;
|
||||||
|
|
||||||
ROFSTLookup.rodbi[] dbs = MyROFSTLookup.GetRODatabaseList(true);
|
ROFSTLookup.rodbi[] dbs = MyROFSTLookup.GetRODatabaseList(true);
|
||||||
|
|
||||||
// B2022-123: RO Tab Treeview not showing correct RO values when switching between procedures.
|
// B2022-123: RO Tab Treeview not showing correct RO values when switching between procedures.
|
||||||
@@ -609,6 +616,8 @@ namespace Volian.Controls.Library
|
|||||||
_currDocVersionID = null;
|
_currDocVersionID = null;
|
||||||
|
|
||||||
if(_docVersionInfo != null) _currDocVersionID = (int?)_docVersionInfo.VersionID;
|
if(_docVersionInfo != null) _currDocVersionID = (int?)_docVersionInfo.VersionID;
|
||||||
|
|
||||||
|
if (tmpROID != null) ExpandNode(ROFSTLookup.FormatRoidKey(tmpROID, true));
|
||||||
}
|
}
|
||||||
|
|
||||||
var unitInfoNode = tvROFST.Nodes.Cast<TreeNode>().Where(x => x.Text == "Unit Information").FirstOrDefault();
|
var unitInfoNode = tvROFST.Nodes.Cast<TreeNode>().Where(x => x.Text == "Unit Information").FirstOrDefault();
|
||||||
|
Reference in New Issue
Block a user