Added new property "Process Only In Location" to limit the datasets that are converted when "Only Process this Procedure Set" is false.

Save the RevDate from the SET.DBF file.
This commit is contained in:
Rich
2012-11-05 21:54:31 +00:00
parent 4ed39bda97
commit 59b765e6d8
4 changed files with 29 additions and 8 deletions

View File

@@ -57,7 +57,13 @@ namespace DataLoader
ci = new ConfigInfo(null);
ci.AddItem("Procedure", "ProcCode", tstr);
}
//load revdate
string tstr2 = dts.ToString("MM/dd/yyyy");
if (tstr2 != null && tstr2 != "")
{
if (ci == null) ci = new ConfigInfo(null);
ci.AddItem("Procedure", "RevDate", tstr2);
}
// Load in format data, i.e. default number of columns:
string tstr1 = dr["Format"].ToString();
if (tstr1 != null && tstr1 != "")