SVN r1146

SVN-Revision: r1146
This commit is contained in:
tdx
2026-03-22 13:50:57 +00:00
parent 84bfbbb067
commit e28188af85
6 changed files with 719 additions and 55 deletions
+1 -35
View File
@@ -134,38 +134,4 @@ 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;
}
}
}
}