Added HowMany setting Property to limit the number of procedures converted.

Use Command Line Parameters ass override for settings.
Add logic to support partial processing of procedure sets (appending to a previously processed set.
This commit is contained in:
Rich
2014-12-08 20:22:33 +00:00
parent c2abe9214b
commit 368280d7ee
4 changed files with 24 additions and 4 deletions

View File

@@ -263,6 +263,15 @@ namespace DataLoader
get { return _Skip; }
set { _Skip = value; }
}
private int _HowMany=0; // Skip specified procedures during load.
[DisplayName("How Many Procedures should be converted")]
[Category("Debugging")]
[Description("Only process part of the set.")]
public int HowMany
{
get { return _HowMany; }
set { _HowMany = value; }
}
#endregion
#region Accessory Pages
private AccPageConversion _ConvertTo;