提交当前本机整理版本
This commit is contained in:
@@ -835,4 +835,40 @@ namespace Lskj.QueryEssentialInfo
|
||||
{N(ljfy)}, {N(yxkcdsf)}, {S(bz)}, {N(qpcykse)}, {N(bpcybtse)},
|
||||
{S(batchId)},{S(skssq)}
|
||||
);";
|
||||
sqlBu
|
||||
sqlBuilder.AppendLine(sql);
|
||||
}
|
||||
if (!string.IsNullOrEmpty(sqlBuilder.ToString()))
|
||||
{
|
||||
SqlHelper.ExecuteNonQuery(sqlBuilder.ToString());
|
||||
}
|
||||
}
|
||||
Invoke(new Action(() =>
|
||||
{
|
||||
this.Close();
|
||||
}));
|
||||
}
|
||||
/// <summary>
|
||||
/// 显示当前文件
|
||||
/// </summary>
|
||||
/// <param name="text"></param>
|
||||
private void SetProcessMsg(string text)
|
||||
{
|
||||
labelCurrentItem.Invoke(new Action(() =>
|
||||
{
|
||||
labelCurrentItem.Text = text;
|
||||
}));
|
||||
}
|
||||
/// <summary>
|
||||
/// 显示当前进度
|
||||
/// </summary>
|
||||
/// <param name="current"></param>
|
||||
/// <param name="total"></param>
|
||||
private void SetProcessBar()
|
||||
{
|
||||
Invoke(new Action(() =>
|
||||
{
|
||||
progressBarCurrent.Value += 1;
|
||||
}));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user