资源简介
有点点基础的可以看看 SQL Sever2008 VS2008 2010都可以
代码片段和文件信息
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
namespace CHEXC
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
private void menuGoodsIn_Click(object sender EventArgs e)
{
//进贷信息
frmJhGoodsInfo jhGOOD = new frmJhGoodsInfo();
jhGOOD.Owner = this;
jhGOOD.ShowDialog();
}
private void menuEmployee_Click(object sender EventArgs e)
{
//员工信息
frmEmpInfo empinfo = new frmEmpInfo();
empinfo.Owner = this;
empinfo.ShowDialog();
}
private void menuCompany_Click(object sender EventArgs e)
{
//供应商信息
frmCompanyInfo frmComp = new frmCompanyInfo();
frmComp.Owner = this;
frmComp.ShowDialog();
}
private void menuFind_Click(object sender EventArgs e)
{
//商品信息查查询
frmFindGood findgood = new frmFindGood();
findgood.Owner = this;
findgood.ShowDialog();
}
private void menuDepotAlarm_Click(object sender EventArgs e)
{
//库存警报
frmKcGoods kcGood = new frmKcGoods();
kcGood.Owner = this;
kcGood.ShowDialog();
}
private void menuDepotFind_Click(object sender EventArgs e)
{
//库存查询
frmKcGoodFind kcfrmFind = new frmKcGoodFind();
kcfrmFind.Owner = this;
kcfrmFind.ShowDialog();
}
private void menuSellGoods_Click(object sender EventArgs e)
{
//商品销售信息
frmSellGoods frmSell = new frmSellGoods();
frmSell.Owner = this;
frmSell.ShowDialog();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
10964467 96
- 上一篇:c# in depth 第四版 全彩带书签 2019最新版
- 下一篇:C#工业控件
相关资源
- C#工业控件
- c# in depth 第四版 全彩带书签 2019最新
- C#学生综合信息管理系统
- c#工资管理系统+文档只供参考
- 基于C#和OpenTK的3D坐标系演示
- C#通讯录管理系统270589
- 用C#实现的图书馆管理系统
- c#+arcengine 空间查询属性查询
- C#基础入门传智播客2011版课件讲师(
- c#教师管理系统
- NPOI 2.2.1
- 教室管理系统,C#SQLite
- 教室管理系统C#与数据库
- C# 实现的3D打印
- C#的windows应用窗体开发教程
- C#设计的企业人事工资考勤管理系统
- C#设计的电子邮件系统+论文+报告+源码
- 教务系统c#可运行代码附带数据库
- C#制作学籍系统管理
- C#编写的选课系统
- C# quartz 定时使用教程
- c# 波形显示上位机代码
- C#+SQL+三层架构酒店管理系统
- asp.net会员管理系统源码
- 基于VS2008 C#编写的简单学生成绩管理
- C#股票K线走势加技术指标源码
- 基于C#的书店管理系统
- C# WPF 解压缩7zip文件 带进度条
- 基于C#开发的音乐播放器
- C# 图片管家
评论
共有 条评论