This commit is contained in:
Kathy Ruffing 2011-06-16 10:24:18 +00:00
parent 7e0da06b05
commit 4a7586d94a
3 changed files with 7 additions and 4 deletions

View File

@ -85,12 +85,14 @@ namespace DataLoader
//#if DEBUG //#if DEBUG
if (VlnSettings.DebugMode) if (VlnSettings.DebugMode)
{ {
MessageBox.Show(@"Format files are taken from c:\development\fmtall");
_FmtAllPath = @"c:\development\fmtall"; _FmtAllPath = @"c:\development\fmtall";
_GenmacAllPath = @"c:\development\genmacall"; _GenmacAllPath = @"c:\development\genmacall";
} }
//#else //#else
else else
{ {
MessageBox.Show(@"Format files are taken from " + vepromspath + @"\fmtall");
_FmtAllPath = vepromspath + @"\fmtall"; _FmtAllPath = vepromspath + @"\fmtall";
_GenmacAllPath = vepromspath + @"\genmacall"; _GenmacAllPath = vepromspath + @"\genmacall";
} }

View File

@ -397,13 +397,13 @@ namespace DataLoader
{ {
ci.AddItem("Section", "OriginalSteps", "Y"); ci.AddItem("Section", "OriginalSteps", "Y");
} }
if (sequence.Substring(4, 1) == "T") if (sequence.Substring(4, 1) == "T") // continuous
{ {
ci.AddItem("Section", "Pagination", "C"); ci.AddItem("Section", "Pagination", "1");
} }
else if (sequence.Substring(4, 1) == "S") else if (sequence.Substring(4, 1) == "S") // separate
{ {
ci.AddItem("Section", "Pagination", "S"); ci.AddItem("Section", "Pagination", "2");
} }
// Step: linked to enhanced (!exist = N) // Step: linked to enhanced (!exist = N)

View File

@ -321,6 +321,7 @@ namespace DataLoader
if (cbFormatsOnly.Checked) if (cbFormatsOnly.Checked)
{ {
// ASSUMES No Formats/genmacs exist in database. // ASSUMES No Formats/genmacs exist in database.
MessageBox.Show(@"Format files are taken from c:\development\fmtall");
ldr._FmtAllPath = @"c:\development\fmtall"; ldr._FmtAllPath = @"c:\development\fmtall";
ldr._GenmacAllPath = @"c:\development\genmacall"; ldr._GenmacAllPath = @"c:\development\genmacall";
ldr.LoadAllFormats(); ldr.LoadAllFormats();