文件名称:电脑公司管理系统
文件大小:334KB
文件格式:ZIP
更新时间:2015-01-18 14:18:19
管理 系统 SQL C# 源码
static void Main()
{
//整个程序启动时先显示登录框,登录成功再显示主界面
LoginFrm login = new LoginFrm();
login.ShowDialog();
if (LoginFrm.blCanLogin==true)
{
Application.Run(new MainFrm());
}
}
//------------创建窗体时,通过登录用户的名称和权限,设置可以访问的功能--------------
private void MainFrm_Load(object sender, System.EventArgs e)
{
this.statusBarPanel2.Text = " 当前用户: " + LoginFrm.strUser +" 所属部门: " + LoginFrm.strDepartment;
//通过用户编号查询权限清单控制主窗体菜单使能状态
this.sendStrSQL = "SELECT 权限名称 from 权限清单 where 用户编号 = '" + LoginFrm.strUser +"'";
this.ds = this.link.SelectDataBase(sendStrSQL,sendTableName);
//系统管理用户为特殊权限用户,他始终拥有所有权利
if ( LoginFrm.strDepartment == "系统管理")
{
this.mnu_WareDataManage.Enabled = true;
this.mnu_StokerDataManage.Enabled = true;
this.mnu_ClientDataManage.Enabled = true;
this.mnu_StockTable.Enabled = true;
this.mnu_SellTable.Enabled = true;
this.mnu_StorageSearch.Enabled = true;
this.mnu_PopedomManage.Enabled = true;
}
else
{
//根据从数据库中检索到的用户的权限来设置其有权使用的菜单
for (int intCounter=0;intCounter
【文件预览】:
电脑公司信息管理系统
----电脑公司信息管理系统.suo(30KB)
----电脑公司信息管理系统()
--------电脑公司信息管理系统.csproj(9KB)
--------StorageSearch.cs(9KB)
--------bin()
--------DataSet2.xss(3B)
--------PopedomManage.cs(10KB)
--------SelectStorage.cs(4KB)
--------LinkDataBase.cs(2KB)
--------StokerDataManage.resx(15KB)
--------CrystalReport.cs(6KB)
--------StorageSearch.resx(12KB)
--------obj()
--------StockTable.cs(29KB)
--------DataSet2.cs(3B)
--------ClientDataManage.cs(12KB)
--------DataSet2.xsc(3B)
--------DataGridNoActiveCellColumn.cs(590B)
--------DataGridComboBoxColumn.resx(2KB)
--------WareDataManage.cs(13KB)
--------DataGridNoActiveCellColumn.resx(2KB)
--------DataGridComboBoxColumn.cs(8KB)
--------CrystalReport1.rpt(16KB)
--------ClientDataManage.resx(15KB)
--------MainFrm.resx(6KB)
--------CrystalReport.resx(11KB)
--------CrystalReport1.cs(4KB)
--------StockTable.resx(23KB)
--------SellTable.resx(23KB)
--------LoginFrm.cs(9KB)
--------SellTable.cs(28KB)
--------WareDataManage.resx(15KB)
--------StokerDataManage.cs(12KB)
--------ClassDiagram1.cd(1B)
--------DataSet2.xsd(2KB)
--------LoginFrm.resx(9KB)
--------PopedomManage.resx(10KB)
--------MainFrm.cs(15KB)
--------DataSet21.Designer.cs(60KB)
--------Properties()
--------SelectStorage.resx(7KB)
----电脑公司信息管理系统.sln(980B)