|
@@ -829,6 +829,23 @@ namespace MOKA_Factory_Tools
|
|
|
SNText.Text = "";
|
|
|
return;
|
|
|
}
|
|
|
+ }
|
|
|
+ else if ( FunctionSettingNow.SNDoubleTips )
|
|
|
+ {
|
|
|
+ StringBuilder strValue = new StringBuilder(256);
|
|
|
+ // 获取上一次的SN号;
|
|
|
+ CommonMethod.GetProfileString("MOKAFactoryTools", "LastSN", "", strValue, 256);
|
|
|
+ if (strValue.ToString().Equals(SN, StringComparison.OrdinalIgnoreCase))
|
|
|
+ {
|
|
|
+ if ( MessageBox.Show("该SN已连续使用两次,可能误用到其他机器,请确认是否继续", "提示", MessageBoxButtons.YesNo) != System.Windows.Forms.DialogResult.Yes)
|
|
|
+ {
|
|
|
+ SNText.Enabled = true;
|
|
|
+ SNText.Text = "";
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ CommonMethod.WriteProfileString("MOKAFactoryTools", "LastSN", SN);
|
|
|
}
|
|
|
#endregion
|
|
|
|