资源简介
erp医疗器械库存管理系统 vc++ SQL
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace SMS
{
public partial class frmLogin : Form
{
public static string M_str_name;//记录登录用户名字
public static string M_str_pwd;//记录登录用户密码
public static string M_str_right;//记录登录用户的权限
baseClass.DataCon datacon = new SMS.baseClass.DataCon();
baseClass.DataOperate doperate = new SMS.baseClass.DataOperate();
public frmLogin()
{
InitializeComponent();
}
private void frmLogin_Load(object sender EventArgs e)
{
doperate.cboxBind(“select UserName from tb_User“ “tb_User“ “UserName“ cboxUName);
}
private void btnLogin_Click(object sender EventArgs e)
{
int P_int_returnValue = doperate.UserLogin(cboxUName.Text.Trim() txtPwd.Text.Trim());
if (P_int_returnValue == 100)
{
M_str_name = cboxUName.Text;
M_str_pwd = txtPwd.Text.Trim();
frmMain fmain = new frmMain();
this.Hide();
fmain.Show();
}
if (P_int_returnValue == -100)
{
MessageBox.Show(“用户名或密码错误!“ “提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
txtPwd.Text = ““;
cboxUName.Focus();
}
}
private void btnExit_Click(object sender EventArgs e)
{
Application.Exit();
}
private void cboxUName_SelectedIndexChanged(object sender EventArgs e)
{
SqlDataReader sqlread = datacon.getread(“select UserNameUserRight from tb_User where UserName=‘“ + cboxUName.Text + “‘“);
if (sqlread.Read())
{
labURight.Text = sqlread[“UserRight“].ToString();
M_str_right = labURight.Text;
}
sqlread.Close();
}
private void frmLogin_FormClosing(object sender FormClosingEventArgs e)
{
Application.Exit();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2014-10-23 16:41 医疗器械库存管理系统\
目录 0 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 1376256 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 1048576 2014-10-23 16:41 医疗器械库存管理系统\Databa
目录 0 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 657 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 1423 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 509 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 559 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 416 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 284 2014-10-23 16:41 医疗器械库存管理系统\Databa
文件 261 2014-10-23 16:41 医疗器械库存管理系统\Databa
目录 0 2014-10-23 16:41 医疗器械库存管理系统\SMS\
目录 0 2014-10-23 16:41 医疗器械库存管理系统\SMS\Backup\
文件 1393152 2014-10-23 16:41 医疗器械库存管理系统\SMS\Backup\data.bak
目录 0 2014-10-23 16:41 医疗器械库存管理系统\SMS\ba
文件 2438 2014-10-23 16:41 医疗器械库存管理系统\SMS\ba
文件 21907 2014-10-23 16:41 医疗器械库存管理系统\SMS\ba
目录 0 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\
文件 4297 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmGoodsInfo.cs
文件 16614 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmGoodsInfo.Designer.cs
文件 8546 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmGoodsInfo.resx
文件 5787 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmPrInfo.cs
文件 14426 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmPrInfo.Designer.cs
文件 9355 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmPrInfo.resx
文件 5442 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmStoreInfo.cs
文件 14019 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmStoreInfo.Designer.cs
文件 9156 2014-10-23 16:41 医疗器械库存管理系统\SMS\BasicInfo\frmStoreInfo.resx
目录 0 2014-10-23 16:41 医疗器械库存管理系统\SMS\bin\
目录 0 2014-10-23 16:41 医疗器械库存管理系统\SMS\bin\Debug\
文件 408 2014-10-23 16:41 医疗器械库存管理系统\SMS\bin\Debug\AboutUs.txt
............此处省略187个文件信息
评论
共有 条评论