SVN-Revision: r259
This commit is contained in:
cyf
2025-02-08 06:53:32 +00:00
parent e776f3bd62
commit 2d55f472c0
7 changed files with 20 additions and 147 deletions
@@ -451,7 +451,7 @@ namespace Lskj.Main.Control
//this.pl_top_left.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("pl_top_left.BackgroundImage")));
this.pl_top_left.Visible = true;
this.menuMain.Visible = true;
this.lblSubTitle.Visible = true;
this.lblSubTitle.Visible = SystemInfo.Instance.HideSubtitle?false:true;
this.ResetPanelWidth();
}
/// <summary>
@@ -4216,41 +4216,4 @@ namespace Lskj.Main.Control
{
bottomLayoutPanel.RowStyles[i].Height = 25;
}
}
}
catch (Exception)
{
}
}
}
/// <summary>
/// 判断是不是数值
/// </summary>
/// <param name="oText"></param>
/// <returns></returns>
private bool IsNumberic(string oText)
{
try
{
int var1 = Convert.ToInt32(oText);
return true;
}
catch
{
return false;
}
}
#region
/// <summary>
/// 加密狗验证
/// </summary>
/// <returns></returns>
private void DogVerify()
{
int[] keyHandles = ERPInfo.Instance.keyHandles = new int[8];
int[] keyNumber = ERPInfo.Instance.keyNumber = new int[8];
int rtn = SmartX1Api.SmartX1Find("Ls_ERP", keyHandles, keyNumber);
}
#endregion
}
}