资源简介
主要功能
商品进销存报表系统主要由【基本档案】、【进货管理】、【销售管理】、【库存管理】、【报表设计】和【系统维护】等模块组成。进入该系统后,用户可以对系统中的信息进行添加、修改、删除和查询等操作。另外,如果是管理员登录,还可以对用户的权限、用户名和密码进行设置或修改。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
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();
}
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2932 2006-12-06 09:42 商品进销存报表系统\GoodsReportManage\GoodsReportManage\AppMain.cs
文件 27831 2006-12-06 09:42 商品进销存报表系统\GoodsReportManage\GoodsReportManage\AppMain.Designer.cs
文件 219731 2006-12-06 09:42 商品进销存报表系统\GoodsReportManage\GoodsReportManage\AppMain.resx
文件 9817 2006-12-04 15:34 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 19928 2006-12-04 15:34 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 13803 2006-10-24 09:11 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 10257 2006-12-07 18:40 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 20770 2006-12-07 18:40 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 13960 2006-12-07 18:40 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 12168 2006-11-03 13:26 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 22325 2006-10-27 15:57 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 14488 2006-10-27 15:57 商品进销存报表系统\GoodsReportManage\GoodsReportManage\ba
文件 1441792 2006-12-15 10:57 商品进销存报表系统\GoodsReportManage\GoodsReportManage\bin\Debug\Databa
文件 1048576 2006-12-15 10:57 商品进销存报表系统\GoodsReportManage\GoodsReportManage\bin\Debug\Databa
文件 573440 2006-12-15 10:58 商品进销存报表系统\GoodsReportManage\GoodsReportManage\bin\Debug\GoodsReportManage.exe
文件 370176 2006-12-15 10:58 商品进销存报表系统\GoodsReportManage\GoodsReportManage\bin\Debug\GoodsReportManage.pdb
文件 5632 2005-11-11 22:25 商品进销存报表系统\GoodsReportManage\GoodsReportManage\bin\Debug\GoodsReportManage.vshost.exe
文件 1102 2006-12-05 10:35 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\CompanyReport.cs
文件 8118 2006-12-05 10:35 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\CompanyReport.Designer.cs
文件 7766 2006-12-05 10:35 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\CompanyReport.resx
文件 1722 2006-11-08 16:24 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeReport.cs
文件 9309 2006-10-26 11:56 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeReport.Designer.cs
文件 8110 2006-10-26 11:56 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeReport.resx
文件 1751 2006-11-07 14:37 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellAnalysisReport.cs
文件 12589 2006-11-04 09:38 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellAnalysisReport.Designer.cs
文件 9186 2006-11-04 09:38 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellAnalysisReport.resx
文件 1202 2006-10-30 09:47 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellReport.cs
文件 9224 2006-10-30 09:47 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellReport.Designer.cs
文件 8128 2006-10-30 09:47 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\EmployeeSellReport.resx
文件 1775 2006-12-08 10:20 商品进销存报表系统\GoodsReportManage\GoodsReportManage\CrystalReport\GoodsInAnalysisReport.cs
............此处省略163个文件信息
相关资源
- asp.net超市管理系统(窗体程序)
- 用ASP.NET做的新闻发布系统三层结构
- GIS小型地理展示系统
- Visual+Studio+2005制作学生成绩管理系统
- C# 气象雷达回波图显示
- C#图解教程_中文版高清PDF,带书签
- c#图像处理傅立叶变换 几何运算 直方
- C#实现以标签选项卡的形式来显示MD
- 银行业务管理系统C#
- C# 编号/单号生成器 源码
- Visual C#数据库项目案例导航(代码)
- C#计算机操作系统哲学家就餐问题
- 《C#程序设计教程第2版》配套源码
- MODUBUS C#代码
- 基于c#的AE开发系统 城市查询信息系统
- A*逆向路径搜索算法C#代码以及地图文
- 企业人事管理系统C#+sql server 2008
- 班级网站源码
- 学生管理系统 C#
- 武汉大学 C#数据结构与算法
- protobuf转换Csharp工具,转换为C#文件
- C#旅游管理系统
- C#三层酒店管理系统(完整源码,可根
- 新闻发布系统源码
- 用C#做的简单的学生学籍管理系统课程
- 二手物品交易网站C#源码
- 超市进销存销售管理系统C#2.0+SQL ser
- C#下用GDAL对多景单幅影像进行图层叠
- C/S 程序设计 三层架构 学生信息管理
- C#网上商城购物系统源码
评论
共有 条评论