亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? stocktable.cs

?? Csharp進(jìn)銷存軟件源代碼
?? CS
?? 第 1 頁 / 共 3 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;

namespace 進(jìn)銷存管理系統(tǒng)
{
	/// <summary>
	/// StockTable 的摘要說明。
	/// </summary>
	public class StockTable : System.Windows.Forms.Form
	{
		private	LinkDataBase link = new LinkDataBase();	
		private DataTable newTable;
		//保存從"商品信息維護(hù)"窗體中選擇后傳過來的數(shù)據(jù),它們將被放入DataGrid的相應(yīng)表格中
		public static string [] inputDataGridArray = new string [] {null,null,null};
		//保存從"供貨商信息維護(hù)"窗體中選擇后傳過來的數(shù)據(jù),它們將被賦值給供貨商號和名稱的控件Text屬性
		//確定要賦的值為文本,故用空字符初始化
		public static string [] inputTextDataArray = new string [] {"",""};
		private DateTime gridMouseDownTime; //記錄點擊DataGrid時的時間

		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.ToolBar toolBar1;
		private System.Windows.Forms.ToolBarButton tbarBtnSave;
		private System.Windows.Forms.ImageList imageList1;
		private System.Windows.Forms.ToolBarButton tbarBtnDelete;
		private System.Windows.Forms.ToolBarButton tbarBtnPrint;
		private System.Windows.Forms.DataGrid dgrd_StockTable;
		private System.Windows.Forms.TextBox txt_StockDate;
		private System.Windows.Forms.TextBox txt_Maker;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.TextBox txt_NoTax;
		private System.Windows.Forms.TextBox txt_Tax;
		private System.Windows.Forms.ComboBox cmb_StokerID;
		private System.Windows.Forms.TextBox txt_StokerName;
		private System.Windows.Forms.TextBox txt_TotalCount;
		private System.Windows.Forms.ComboBox cmb_Oprater;
		private System.ComponentModel.IContainer components;

		public StockTable()
		{
			//
			// Windows 窗體設(shè)計器支持所必需的
			//
			InitializeComponent();

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
			this.selectDataBase();
			this.DataGridStateControl();
			this.cmb_StokerID.Items.Add("");
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設(shè)計器生成的代碼
		/// <summary>
		/// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(StockTable));
			this.dgrd_StockTable = new System.Windows.Forms.DataGrid();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.cmb_Oprater = new System.Windows.Forms.ComboBox();
			this.cmb_StokerID = new System.Windows.Forms.ComboBox();
			this.txt_StockDate = new System.Windows.Forms.TextBox();
			this.txt_Maker = new System.Windows.Forms.TextBox();
			this.label4 = new System.Windows.Forms.Label();
			this.txt_StokerName = new System.Windows.Forms.TextBox();
			this.label5 = new System.Windows.Forms.Label();
			this.label6 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.toolBar1 = new System.Windows.Forms.ToolBar();
			this.tbarBtnSave = new System.Windows.Forms.ToolBarButton();
			this.tbarBtnDelete = new System.Windows.Forms.ToolBarButton();
			this.tbarBtnPrint = new System.Windows.Forms.ToolBarButton();
			this.imageList1 = new System.Windows.Forms.ImageList(this.components);
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.txt_TotalCount = new System.Windows.Forms.TextBox();
			this.label8 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.txt_NoTax = new System.Windows.Forms.TextBox();
			this.label10 = new System.Windows.Forms.Label();
			this.txt_Tax = new System.Windows.Forms.TextBox();
			((System.ComponentModel.ISupportInitialize)(this.dgrd_StockTable)).BeginInit();
			this.groupBox1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			this.SuspendLayout();
			// 
			// dgrd_StockTable
			// 
			this.dgrd_StockTable.AllowSorting = false;
			this.dgrd_StockTable.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
				| System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.dgrd_StockTable.CaptionVisible = false;
			this.dgrd_StockTable.DataMember = "";
			this.dgrd_StockTable.HeaderForeColor = System.Drawing.SystemColors.ControlText;
			this.dgrd_StockTable.Location = new System.Drawing.Point(0, 104);
			this.dgrd_StockTable.Name = "dgrd_StockTable";
			this.dgrd_StockTable.Size = new System.Drawing.Size(720, 264);
			this.dgrd_StockTable.TabIndex = 5;
			this.dgrd_StockTable.MouseDown += new System.Windows.Forms.MouseEventHandler(this.dgrd_StockTable_MouseDown);
			this.dgrd_StockTable.DoubleClick += new System.EventHandler(this.dgrd_StockTable_DoubleClick);
			this.dgrd_StockTable.CurrentCellChanged += new System.EventHandler(this.dgrd_StockTable_CurrentCellChanged);
			// 
			// groupBox1
			// 
			this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
				| System.Windows.Forms.AnchorStyles.Right)));
			this.groupBox1.Controls.Add(this.cmb_Oprater);
			this.groupBox1.Controls.Add(this.cmb_StokerID);
			this.groupBox1.Controls.Add(this.txt_StockDate);
			this.groupBox1.Controls.Add(this.txt_Maker);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.txt_StokerName);
			this.groupBox1.Controls.Add(this.label5);
			this.groupBox1.Controls.Add(this.label6);
			this.groupBox1.Controls.Add(this.label7);
			this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
			this.groupBox1.Location = new System.Drawing.Point(0, 22);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(720, 82);
			this.groupBox1.TabIndex = 0;
			this.groupBox1.TabStop = false;
			// 
			// cmb_Oprater
			// 
			this.cmb_Oprater.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmb_Oprater.ItemHeight = 12;
			this.cmb_Oprater.Location = new System.Drawing.Point(524, 16);
			this.cmb_Oprater.Name = "cmb_Oprater";
			this.cmb_Oprater.Size = new System.Drawing.Size(121, 20);
			this.cmb_Oprater.Sorted = true;
			this.cmb_Oprater.TabIndex = 3;
			// 
			// cmb_StokerID
			// 
			this.cmb_StokerID.Location = new System.Drawing.Point(140, 51);
			this.cmb_StokerID.MaxDropDownItems = 1;
			this.cmb_StokerID.Name = "cmb_StokerID";
			this.cmb_StokerID.Size = new System.Drawing.Size(128, 20);
			this.cmb_StokerID.Sorted = true;
			this.cmb_StokerID.TabIndex = 4;
			this.cmb_StokerID.DropDown += new System.EventHandler(this.cmb_Stoker_DropDown);
			this.cmb_StokerID.KeyUp += new System.Windows.Forms.KeyEventHandler(this.cmb_StokerID_KeyUp);
			// 
			// txt_StockDate
			// 
			this.txt_StockDate.Location = new System.Drawing.Point(140, 16);
			this.txt_StockDate.Name = "txt_StockDate";
			this.txt_StockDate.Size = new System.Drawing.Size(128, 21);
			this.txt_StockDate.TabIndex = 1;
			this.txt_StockDate.Text = "";
			// 
			// txt_Maker
			// 
			this.txt_Maker.Location = new System.Drawing.Point(343, 16);
			this.txt_Maker.Name = "txt_Maker";
			this.txt_Maker.TabIndex = 2;
			this.txt_Maker.Text = "sys";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(75, 55);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(60, 16);
			this.label4.TabIndex = 19;
			this.label4.Text = "供貨商號:";
			// 
			// txt_StokerName
			// 
			this.txt_StokerName.Location = new System.Drawing.Point(295, 51);
			this.txt_StokerName.Name = "txt_StokerName";
			this.txt_StokerName.ReadOnly = true;
			this.txt_StokerName.Size = new System.Drawing.Size(350, 21);
			this.txt_StokerName.TabIndex = 9;
			this.txt_StokerName.TabStop = false;
			this.txt_StokerName.Text = "";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(290, 22);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(42, 16);
			this.label5.TabIndex = 17;
			this.label5.Text = "制單人:";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(468, 22);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(48, 16);
			this.label6.TabIndex = 18;
			this.label6.Text = "業(yè)務(wù)員:";
			// 
			// label7
			// 
			this.label7.Location = new System.Drawing.Point(75, 22);
			this.label7.Name = "label7";
			this.label7.Size = new System.Drawing.Size(60, 16);
			this.label7.TabIndex = 16;
			this.label7.Text = "進(jìn)貨日期:";
			// 
			// toolBar1
			// 
			this.toolBar1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.toolBar1.Buttons.AddRange(new System.Windows.Forms.ToolBarButton[] {
																						this.tbarBtnSave,
																						this.tbarBtnDelete,
																						this.tbarBtnPrint});
			this.toolBar1.DropDownArrows = true;
			this.toolBar1.ImageList = this.imageList1;
			this.toolBar1.Location = new System.Drawing.Point(0, 0);
			this.toolBar1.Name = "toolBar1";
			this.toolBar1.ShowToolTips = true;
			this.toolBar1.Size = new System.Drawing.Size(720, 29);
			this.toolBar1.TabIndex = 7;
			this.toolBar1.ButtonClick += new System.Windows.Forms.ToolBarButtonClickEventHandler(this.toolBar1_ButtonClick);
			// 
			// tbarBtnSave
			// 
			this.tbarBtnSave.ImageIndex = 0;
			this.tbarBtnSave.ToolTipText = "保存修改";
			// 
			// tbarBtnDelete

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美一区二区精品忘忧草| 欧洲激情一区二区| 久久精品人人做人人爽人人| 国产自产2019最新不卡| 久久一留热品黄| 国产99久久久精品| 亚洲欧洲精品一区二区精品久久久| 夫妻av一区二区| 亚洲欧美日韩精品久久久久| 欧美最猛黑人xxxxx猛交| 午夜av一区二区| 日韩欧美色电影| 大尺度一区二区| 亚洲精品v日韩精品| 欧美日韩在线播放一区| 久久精品理论片| 国产精品久久一卡二卡| 欧美三级一区二区| 精品一区二区三区欧美| 中文在线资源观看网站视频免费不卡 | 免费成人在线影院| 久久久久国产一区二区三区四区| 国产精品一区二区男女羞羞无遮挡| 日本一区二区三区dvd视频在线| 99久久99久久精品国产片果冻| 亚洲一区二区三区在线看| 欧美一区二区三区思思人| 国产99精品国产| 亚洲午夜久久久久久久久电影网 | 91精品久久久久久久99蜜桃| 开心九九激情九九欧美日韩精美视频电影 | 亚洲一区二区在线播放相泽| 日韩一级精品视频在线观看| 99视频在线观看一区三区| 视频一区二区不卡| 中文字幕在线不卡视频| 91精品国产手机| 99久久国产免费看| 精品一区免费av| 亚洲精品午夜久久久| 欧美成人r级一区二区三区| 99久久精品国产精品久久| 喷白浆一区二区| 亚洲久本草在线中文字幕| 精品久久久久久久久久久久久久久 | 亚洲品质自拍视频| 精品国产网站在线观看| 欧美亚洲动漫精品| 丁香婷婷深情五月亚洲| 秋霞av亚洲一区二区三| 亚洲激情图片qvod| 欧美激情一区在线观看| 欧美不卡在线视频| 欧美亚洲综合一区| 99久久婷婷国产综合精品| 男人操女人的视频在线观看欧美| 亚洲免费观看在线观看| 国产精品免费视频网站| 欧美v亚洲v综合ⅴ国产v| 在线观看91精品国产麻豆| 97se亚洲国产综合自在线不卡 | 丰满少妇在线播放bd日韩电影| 婷婷久久综合九色综合绿巨人| 成人免费小视频| 中文无字幕一区二区三区| 精品美女在线播放| 欧美成人一区二区三区 | 日韩一区国产二区欧美三区| 欧美色图免费看| 欧美在线免费视屏| 色婷婷综合激情| 91麻豆.com| 99r精品视频| 91在线你懂得| 91视频在线观看| 91看片淫黄大片一级在线观看| 国产成人亚洲综合a∨婷婷| 国产揄拍国内精品对白| 国产真实乱子伦精品视频| 精品一区二区三区在线播放| 麻豆91在线播放| 久久国产精品一区二区| 精品一区二区三区香蕉蜜桃| 国产在线精品免费| 国产激情一区二区三区四区| 国产一区二区不卡| 国产精品一卡二卡在线观看| 国产福利视频一区二区三区| 成人免费视频视频在线观看免费| 成人性视频免费网站| 99精品偷自拍| 欧美视频一区二区三区在线观看| 欧美亚洲动漫制服丝袜| 欧美日韩在线播放一区| 日韩欧美国产综合| 亚洲国产精品高清| 亚洲图片激情小说| 日韩综合在线视频| 黑人巨大精品欧美一区| 国产成人无遮挡在线视频| av成人老司机| 欧美日韩www| 精品久久一区二区| 国产精品网站一区| 一区二区三区在线免费播放| 午夜视频在线观看一区| 国产在线国偷精品产拍免费yy| 成人激情免费视频| 欧美四级电影网| 欧美大肚乱孕交hd孕妇| 中文字幕精品一区二区三区精品| 亚洲伦在线观看| 日本强好片久久久久久aaa| 国精产品一区一区三区mba视频 | 欧美一卡2卡3卡4卡| 久久综合色鬼综合色| 中文字幕一区二区三区精华液| 一区二区三区**美女毛片| 久久91精品久久久久久秒播| 97久久超碰国产精品| 欧美一区二区三区喷汁尤物| 欧美国产精品中文字幕| 亚洲福利一区二区三区| 国产成人亚洲综合a∨猫咪| 欧美日韩在线综合| 中文字幕第一页久久| 日韩国产在线一| 成人不卡免费av| 日韩一区二区电影在线| 亚洲视频一区在线观看| 韩国女主播一区| 在线观看免费亚洲| 国产精品美女久久福利网站| 日本美女一区二区| 色婷婷亚洲综合| 中文字幕乱码一区二区免费| 日本欧美一区二区| 日本黄色一区二区| 欧美国产综合一区二区| 免费高清成人在线| 欧美日本韩国一区二区三区视频 | 日本中文字幕不卡| 日本伦理一区二区| 国产精品理伦片| 国产一区二区视频在线播放| 7777精品久久久大香线蕉| 亚洲精品成人在线| 99这里都是精品| 中文在线一区二区| 国产精品久久夜| 欧美一区二区在线观看| 成人综合在线观看| 精品国产91乱码一区二区三区| 亚洲国产一区二区三区| 91小视频在线免费看| 亚洲国产成人午夜在线一区| 国产精品123| 久久新电视剧免费观看| 美日韩一区二区| 91精品国产黑色紧身裤美女| 亚洲国产精品视频| 91久久线看在观草草青青| 中文字幕在线观看一区二区| 国产一区二区三区国产| 精品女同一区二区| 久久成人免费网站| 久久综合网色—综合色88| 强制捆绑调教一区二区| 欧美人妇做爰xxxⅹ性高电影| 亚洲一区欧美一区| 91黄色免费看| 亚洲一区二区精品视频| 欧美日韩国产一级二级| 亚洲在线视频一区| 欧美日韩aaaaa| 日韩av一区二区在线影视| 日韩欧美视频一区| 狠狠色丁香久久婷婷综合丁香| 久久噜噜亚洲综合| 国产91精品入口| 国产精品免费aⅴ片在线观看| 国产v综合v亚洲欧| 亚洲欧洲在线观看av| 91捆绑美女网站| 亚洲福利一二三区| 日韩免费福利电影在线观看| 国产一区二区女| 国产精品人人做人人爽人人添| 91色视频在线| 亚洲成人资源在线| 精品毛片乱码1区2区3区| 国产一区二区三区免费在线观看 | 欧美性猛片aaaaaaa做受| 丝袜美腿高跟呻吟高潮一区| 精品少妇一区二区三区| www.亚洲精品| 三级亚洲高清视频| 国产色一区二区| 日本二三区不卡| 精品在线免费视频|