Corrected code to delete INF files. These contain invalid Index paths
Added TextBox and Property to Skip Procedures and speed-up debugging Added TextBox and Property to Skip Processing Procedures and speed-up debugging Removed duplicate entry Added Code to Skip Processing Procedures and speed-up debugging Changed code to use entire (16 Character) ROID to get the Multiple Return Values
This commit is contained in:
@@ -57,7 +57,20 @@ namespace DataLoader
|
||||
public int pbStepMaximum { get { return pbStep.Maximum; } set { pbStep.Maximum = value; } }
|
||||
public int pbStepValue { get { return pbStep.Value; } set { pbStep.Value = value; } }
|
||||
public int pbProcValue { get { return pbProc.Value; } set { pbProc.Value = value; } }
|
||||
|
||||
public int SkipProcedures
|
||||
{
|
||||
get
|
||||
{
|
||||
try
|
||||
{
|
||||
return int.Parse(tbSkip.Text);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
public string Status
|
||||
{
|
||||
get { return toolStripStatusLabel1.Text; }
|
||||
@@ -572,6 +585,8 @@ namespace DataLoader
|
||||
btnConvertSelected.Visible = _DeveloperMode;
|
||||
cbxOnlyThisSet.Visible = _DeveloperMode;
|
||||
cbCheckRTF.Visible = _DeveloperMode;
|
||||
tbSkip.Visible = _DeveloperMode;
|
||||
lblSkip.Visible = _DeveloperMode;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user