资源简介
C#超市仓库管理系统(sql server数据库),毕业设计必备,直接使用即可啊。程序做的简单明了
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
//Download by http://www.codefans.net
using GoodsReportManage.ItemClass;
using GoodsReportManage.Goods;
using System.Collections;
namespace GoodsReportManage
{
public partial class AppMain : Form
{
public AppMain()
{
InitializeComponent();
}
SqlbaseClass G_SqlClass = new SqlbaseClass();
///
/// 根据用户权限分配显示菜单
///
public void MenuIsVisible()
{
ArrayList arylst = new ArrayList();
ToolStripMenuItem[] menu = new ToolStripMenuItem[] {
this.menuEmployeethis.menuCompanythis.menuCustomerthis.menuGoodsInthis.menuGoodsOutthis.menuSellGoods
this.menuGoodsBackthis.menuDepotChangethis.menuDepotAlarmthis.menuSysUserthis.menuPopedomSetthis.menuDatabakthis.menuReBakData
};
DataSet P_ds = G_SqlClass.GetDs(“SELECT * FROM v_UserView WHERE SysLoginName = ‘“+ PropertyClass.SendNameValue+“‘“);
for (int i = 0; i < 13; i++)
{
arylst.Add(P_ds.Tables[0].Rows[0][14+i].ToString());
}
for (int j = 0; j < arylst.Count; j++)
{
if (arylst[j].ToString() == “False“)
{
menu[j].Visible = false;
}
else
{
menu[j].Visible = true;
}
}
}
private void timer1_Tick(object sender EventArgs e)
{
this.statusTime.Text = “当前时间:“ + DateTime.Now.ToString();
}
private void AppMain_Load(object sender EventArgs e)
{
this.timer1.Start();
this.statusUser.Text = “系统操作员:“+PropertyClass.SendNameValue;
MenuIsVisible();
}
private void AppMain_FormClosing(object sender FormClosingEventArgs e)
{
}
private void Menu_Click(object sender EventArgs e)
{
WinOperationClass P_Menu = new WinOperationClass(); //声明对WinForm窗体进行操作的类对象
P_Menu.ShowForm((ToolStripMenuItem)sender this); //调用类中的方法,完成对窗体中ToolStripMenuItem控件相应项的操作
}
private void AppMain_FormClosed_1(object sender FormClosedEventArgs e)
{
if (MessageBox.Show(“确定要退出吗?“ “提示对话框“ MessageBoxButtons.YesNo MessageBoxIcon.Information) == DialogResult.Yes)
{
Application.Exit();
this.Dispose();
}
else
{
AppMain app = new AppMain();
app.Show();
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
6810018 192
- 上一篇:IrisSkin4使用
- 下一篇:ScintillaNET文本编辑器源码
相关资源
- C#最新KZB智慧医疗健康评估系统源码
- C# ArcGISEngine 分区统计最小二乘
- C# DLL源码查看器
- asp.net做的小的旅游网站
- C# 宿舍管理系统 毕业设计
- C#实现的全景图拼接两张图片合并成一
- 简单的超市管理系统
- MySkin V1.0
- 影碟租赁管理系统C# 可视化
- C#物流管理系统源码
- C#文件加密解密及备份恢复工具
- C# Winform 双层窗体
- C# Winform IrisSkin4 使用
- c# 毕业设计论文_学生宿舍管理系统
- C# ZPL指令打印标签(驱动并口或U口
- C#连接MySQL数据库驱动类库
- 基于C#聊天程序
- C#编写数字图像处理程序
- C#读取HDF5所需dll及 WIN64
- Asp.Net 4.0从入门到精通(源代码)
- 使用ASP.NET技术开发BS结构的应用系统
- (C#完整项目代码+Access 数据库)卡拉
- (完整c#项目)家庭视频监控系统
- C# 宿舍管理信息系统 数据库
- 基于c#的简单餐饮管理系统
- 超市管理系统(C#源码)113057
- C#使用CH341 SPI模块读写SD卡
- C#学生考勤系统
- C#程序设计教程蒙祖强
- C#访问sqlite并分页显示源码
评论
共有 条评论