张松男 2 years ago
parent
commit
41524d5266
  1. 5
      APPQ5/QMAPP.WinForm/Forms/Operation/OperationForm.cs
  2. 4
      APPQ5/QMAPP.WinForm/Properties/AssemblyInfo.cs

5
APPQ5/QMAPP.WinForm/Forms/Operation/OperationForm.cs

@ -640,6 +640,7 @@ namespace QMAPP.WinForm.Forms.Operation
txtCode.Text = "";
//PlaySound.PlaySounds.Play(@errorSoundPath);
System.Media.SoundPlayer media = new System.Media.SoundPlayer(errorSoundPath);
media.Play();
this.lblError.Text = "请先选择设备!";
this.lblError.ForeColor = Color.White;
this.lblError.BackColor = Color.Red;
@ -654,6 +655,7 @@ namespace QMAPP.WinForm.Forms.Operation
txtCode.Text = "";
//PlaySound.PlaySounds.Play(@errorSoundPath);
System.Media.SoundPlayer media = new System.Media.SoundPlayer(errorSoundPath);
media.Play();
this.lblError.Text = "请输入条码!";
this.lblError.ForeColor = Color.White;
this.lblError.BackColor = Color.Red;
@ -675,6 +677,7 @@ namespace QMAPP.WinForm.Forms.Operation
txtCode.Text = "";
//PlaySound.PlaySounds.Play(@errorSoundPath);
System.Media.SoundPlayer media = new System.Media.SoundPlayer(errorSoundPath);
media.Play();
this.lblError.Text = "输入条码不是本工序可接受格式!";
this.lblError.ForeColor = Color.White;
this.lblError.BackColor = Color.Red;
@ -764,6 +767,7 @@ namespace QMAPP.WinForm.Forms.Operation
{
//PlaySound.PlaySounds.Play(@errorSoundPath);
System.Media.SoundPlayer media = new System.Media.SoundPlayer(errorSoundPath);
media.Play();
this.lblError.Text = result.Message;
this.lblError.ForeColor = Color.White;
this.lblError.BackColor = Color.Red;
@ -803,6 +807,7 @@ namespace QMAPP.WinForm.Forms.Operation
if (!"770,018,278".Contains(productCode.Substring(0, 3)))
{
System.Media.SoundPlayer media = new System.Media.SoundPlayer(@okSoundPath);
media.Play();
}

4
APPQ5/QMAPP.WinForm/Properties/AssemblyInfo.cs

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// 可以指定所有这些值,也可以使用“内部版本号”和“修订号”的默认值,
// 方法是按如下所示使用“*”:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2023.04.27.01")]
[assembly: AssemblyFileVersion("2023.04.27.01")]
[assembly: AssemblyVersion("2023.05.15.01")]
[assembly: AssemblyFileVersion("2023.05.15.01")]

Loading…
Cancel
Save