提交当前本机整理版本
This commit is contained in:
@@ -134,4 +134,38 @@ namespace Lskj.PubInvoiceOut
|
||||
this.Close();
|
||||
this.Dispose();
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
ShowTips(resultEventArgs.Message);
|
||||
}
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
}
|
||||
System.Threading.Thread.Sleep(5000);
|
||||
}
|
||||
});
|
||||
thread.Start();
|
||||
}
|
||||
}
|
||||
public void ShowTips(string msg)
|
||||
{
|
||||
if (this.InvokeRequired && this.IsHandleCreated)
|
||||
{
|
||||
this.Invoke(new Action(() =>
|
||||
{
|
||||
this.tipsLabel.Text = msg;
|
||||
}));
|
||||
}
|
||||
else
|
||||
{
|
||||
this.tipsLabel.Text = msg;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user