SVN r445
SVN-Revision: r445
This commit is contained in:
@@ -43,6 +43,10 @@ namespace Lskj.PubBomImport
|
||||
/// </summary>
|
||||
public partial class FrmProgress : Form
|
||||
{
|
||||
/// <summary>
|
||||
/// Occurs when [on add record call back].
|
||||
/// </summary>
|
||||
public event EventHandler OnImportCallBack;
|
||||
public FrmMain frmMain;
|
||||
public DynamicBomImport Model;
|
||||
public System.Windows.Forms.Timer ImportTimer = new System.Windows.Forms.Timer();
|
||||
@@ -568,6 +572,8 @@ namespace Lskj.PubBomImport
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (this.OnImportCallBack != null)
|
||||
this.OnImportCallBack(null, null);
|
||||
this.DialogResult = DialogResult.OK;
|
||||
this.Close();
|
||||
ImportTimer?.Dispose();
|
||||
@@ -657,6 +663,8 @@ namespace Lskj.PubBomImport
|
||||
}
|
||||
finally
|
||||
{
|
||||
if (this.OnImportCallBack != null)
|
||||
this.OnImportCallBack(null, null);
|
||||
this.DialogResult = DialogResult.OK;
|
||||
this.Close();
|
||||
ImportTimer?.Dispose();
|
||||
|
||||
Reference in New Issue
Block a user