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

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

?? returnstg.cs

?? 物流行業(yè)的倉庫庫存管理系統(tǒng)DOTNET平臺下的源碼
?? CS
?? 第 1 頁 / 共 2 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.SqlClient;

namespace WindowsApplication4
{
	/// <summary>
	/// ReturnStg 的摘要說明。
	/// </summary>
	public class ReturnStg : System.Windows.Forms.Form
	{
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.TextBox textNum2;
		private System.Windows.Forms.TextBox textDate;
		private System.Windows.Forms.TextBox textAmount;
		private System.Windows.Forms.TextBox textMan;
		private System.Windows.Forms.DataGrid dataGrid1;
		private DataTable ReturnInfo=new DataTable();
		private DataSet Returnset=new DataSet();
		private CurrencyManager ReReport;
		private SqlTransaction ReturnTran;
		private SqlConnection MyConn = new SqlConnection("server=.;Trusted_Connection=yes;user=sa;pwd=1;database=storage");
		private System.Data.SqlClient.SqlCommand sqlSelectCommand1;
		private System.Data.SqlClient.SqlCommand sqlInsertCommand1;
		private System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
		private System.Data.SqlClient.SqlCommand sqlDeleteCommand1;
		private System.Data.SqlClient.SqlConnection sqlConnection1;
		private System.Windows.Forms.TextBox textDep;
		private System.Windows.Forms.Button cancel_button;
		private System.Windows.Forms.Button send_button;
		private System.Windows.Forms.Button add_button;
		private System.Data.SqlClient.SqlDataAdapter RetnAdapter;
		private string oldtxtAmount="";//重新編輯前的還庫數(shù)量值
		private bool change=false;//還庫數(shù)量值狀態(tài)更改標(biāo)識
		/// <summary>
		/// 必需的設(shè)計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

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

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構(gòu)造函數(shù)代碼
			//
		}

		/// <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.groupBox1 = new System.Windows.Forms.GroupBox();
			this.textDep = new System.Windows.Forms.TextBox();
			this.textMan = new System.Windows.Forms.TextBox();
			this.textAmount = new System.Windows.Forms.TextBox();
			this.textDate = new System.Windows.Forms.TextBox();
			this.textNum2 = new System.Windows.Forms.TextBox();
			this.label6 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label3 = new System.Windows.Forms.Label();
			this.label2 = new System.Windows.Forms.Label();
			this.add_button = new System.Windows.Forms.Button();
			this.send_button = new System.Windows.Forms.Button();
			this.cancel_button = new System.Windows.Forms.Button();
			this.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.RetnAdapter = new System.Data.SqlClient.SqlDataAdapter();
			this.sqlDeleteCommand1 = new System.Data.SqlClient.SqlCommand();
			this.sqlConnection1 = new System.Data.SqlClient.SqlConnection();
			this.sqlInsertCommand1 = new System.Data.SqlClient.SqlCommand();
			this.sqlSelectCommand1 = new System.Data.SqlClient.SqlCommand();
			this.sqlUpdateCommand1 = new System.Data.SqlClient.SqlCommand();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.SuspendLayout();
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.textDep);
			this.groupBox1.Controls.Add(this.textMan);
			this.groupBox1.Controls.Add(this.textAmount);
			this.groupBox1.Controls.Add(this.textDate);
			this.groupBox1.Controls.Add(this.textNum2);
			this.groupBox1.Controls.Add(this.label6);
			this.groupBox1.Controls.Add(this.label5);
			this.groupBox1.Controls.Add(this.label4);
			this.groupBox1.Controls.Add(this.label3);
			this.groupBox1.Controls.Add(this.label2);
			this.groupBox1.Controls.Add(this.add_button);
			this.groupBox1.Controls.Add(this.send_button);
			this.groupBox1.Controls.Add(this.cancel_button);
			this.groupBox1.Location = new System.Drawing.Point(24, 192);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(456, 144);
			this.groupBox1.TabIndex = 4;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "還庫信息";
			// 
			// textDep
			// 
			this.textDep.Location = new System.Drawing.Point(80, 96);
			this.textDep.Name = "textDep";
			this.textDep.Size = new System.Drawing.Size(248, 21);
			this.textDep.TabIndex = 9;
			this.textDep.Text = "";
			// 
			// textMan
			// 
			this.textMan.Location = new System.Drawing.Point(240, 56);
			this.textMan.Name = "textMan";
			this.textMan.Size = new System.Drawing.Size(88, 21);
			this.textMan.TabIndex = 8;
			this.textMan.Text = "";
			// 
			// textAmount
			// 
			this.textAmount.Location = new System.Drawing.Point(80, 56);
			this.textAmount.Name = "textAmount";
			this.textAmount.Size = new System.Drawing.Size(88, 21);
			this.textAmount.TabIndex = 7;
			this.textAmount.Text = "";
			// 
			// textDate
			// 
			this.textDate.Location = new System.Drawing.Point(240, 16);
			this.textDate.Name = "textDate";
			this.textDate.Size = new System.Drawing.Size(88, 21);
			this.textDate.TabIndex = 6;
			this.textDate.Text = "";
			// 
			// textNum2
			// 
			this.textNum2.Location = new System.Drawing.Point(80, 16);
			this.textNum2.Name = "textNum2";
			this.textNum2.Size = new System.Drawing.Size(88, 21);
			this.textNum2.TabIndex = 5;
			this.textNum2.Text = "";
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(8, 96);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(72, 16);
			this.label6.TabIndex = 4;
			this.label6.Text = "歸還部門:";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(184, 64);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(56, 24);
			this.label5.TabIndex = 3;
			this.label5.Text = "經(jīng)辦人:";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(16, 56);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(48, 16);
			this.label4.TabIndex = 2;
			this.label4.Text = "*數(shù)量:";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(176, 16);
			this.label3.Name = "label3";
			this.label3.Size = new System.Drawing.Size(80, 16);
			this.label3.TabIndex = 1;
			this.label3.Text = "還庫日期:";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(16, 24);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(72, 16);
			this.label2.TabIndex = 0;
			this.label2.Text = "*設(shè)備號:";
			// 
			// add_button
			// 
			this.add_button.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.add_button.Location = new System.Drawing.Point(376, 16);
			this.add_button.Name = "add_button";
			this.add_button.Size = new System.Drawing.Size(72, 24);
			this.add_button.TabIndex = 1;
			this.add_button.Text = "新增";
			this.add_button.Click += new System.EventHandler(this.add_button_Click);
			// 
			// send_button
			// 
			this.send_button.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.send_button.Location = new System.Drawing.Point(376, 64);
			this.send_button.Name = "send_button";
			this.send_button.Size = new System.Drawing.Size(72, 24);
			this.send_button.TabIndex = 2;
			this.send_button.Text = "提交";
			this.send_button.Click += new System.EventHandler(this.send_button_Click);
			// 
			// cancel_button
			// 
			this.cancel_button.Font = new System.Drawing.Font("宋體", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(134)));
			this.cancel_button.Location = new System.Drawing.Point(376, 112);
			this.cancel_button.Name = "cancel_button";
			this.cancel_button.Size = new System.Drawing.Size(72, 24);
			this.cancel_button.TabIndex = 3;
			this.cancel_button.Text = "取消";
			this.cancel_button.Click += new System.EventHandler(this.cancel_button_Click);
			// 
			// dataGrid1
			// 
			this.dataGrid1.DataMember = "";

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久精品影视| 欧美另类久久久品| 国产精品毛片久久久久久| 国产成人免费视频精品含羞草妖精| 欧美一卡2卡3卡4卡| 黄色日韩三级电影| 欧美国产国产综合| 色婷婷国产精品久久包臀| 亚洲一区二区视频| 精品久久久久久亚洲综合网| 成人国产精品视频| 亚洲国产综合色| 日韩一区二区电影| 国产精品乡下勾搭老头1| 17c精品麻豆一区二区免费| 91福利在线看| 激情小说欧美图片| 综合久久久久综合| 欧美浪妇xxxx高跟鞋交| 国产高清亚洲一区| 亚洲主播在线观看| 久久久五月婷婷| 欧美性大战久久| 国产一区不卡精品| 亚洲一区二区三区四区在线| 欧美videos大乳护士334| 99久久精品免费看国产免费软件| 亚洲1区2区3区视频| 国产亚洲精品资源在线26u| 欧美性生活一区| 国产精品一区免费视频| 依依成人精品视频| 久久久久久黄色| 欧美丝袜丝交足nylons图片| 久久精品国产99国产| 一二三四区精品视频| 久久免费偷拍视频| 欧美精品一级二级三级| 成人免费高清视频| 日本三级韩国三级欧美三级| 国产精品进线69影院| 精品免费日韩av| 欧美日韩中字一区| 99久久99久久久精品齐齐| 韩国三级在线一区| 日韩av一区二区三区四区| 亚洲视频免费在线| 日本一区二区三区视频视频| 欧美一三区三区四区免费在线看| 91在线观看美女| 国产suv精品一区二区883| 视频在线在亚洲| 夜夜操天天操亚洲| 日韩一区有码在线| 亚洲国产精品成人综合| 日韩免费视频线观看| 欧美日韩一区二区三区在线看| av在线免费不卡| 粉嫩久久99精品久久久久久夜| 狠狠久久亚洲欧美| 精品一区中文字幕| 欧美精品一区二区三区蜜臀| 色88888久久久久久影院按摩| 狠狠色综合播放一区二区| 亚洲成a人片在线观看中文| 亚洲欧美偷拍三级| 国产精品欧美综合在线| 国产视频一区二区三区在线观看| 日韩三级在线观看| 欧美一区三区四区| 911精品产国品一二三产区| 欧美色综合天天久久综合精品| 色综合网站在线| 一本一道波多野结衣一区二区 | 亚洲蜜桃精久久久久久久| 欧美国产日韩精品免费观看| 国产色91在线| 中文字幕亚洲欧美在线不卡| 国产精品成人免费在线| 亚洲欧洲精品天堂一级| 亚洲三级免费观看| 一区二区三区欧美在线观看| 一区二区三区欧美亚洲| 日韩中文字幕麻豆| 亚洲女与黑人做爰| 在线视频国内自拍亚洲视频| 91免费国产在线| 欧洲精品在线观看| 欧美日韩成人一区| 日韩欧美一级二级三级| 久久久久久久久久久久久久久99 | 国产精品99久久久久久宅男| 国产不卡视频在线观看| 成人aaaa免费全部观看| 91九色最新地址| 正在播放亚洲一区| 精品理论电影在线| 国产精品美女久久久久aⅴ| 一区二区三区成人| 乱中年女人伦av一区二区| 国产成人欧美日韩在线电影| 91首页免费视频| 在线综合亚洲欧美在线视频| 久久久久久久久久久99999| 亚洲人吸女人奶水| 免费成人在线影院| av在线不卡电影| 欧美嫩在线观看| 国产欧美视频在线观看| 一区二区三区四区不卡视频| 麻豆精品一区二区综合av| 成熟亚洲日本毛茸茸凸凹| 欧美中文字幕一区二区三区| 久久综合色一综合色88| 亚洲日本在线天堂| 久久精品久久99精品久久| 99国产精品国产精品久久| 91麻豆精品国产91久久久久| 欧美激情在线一区二区| 日本成人在线电影网| 成人app在线| 亚洲精品在线免费播放| 亚洲一卡二卡三卡四卡无卡久久| 激情图区综合网| 欧美日韩精品欧美日韩精品| 亚洲国产高清在线| 欧美一级片在线| 99久久精品免费| 欧美天天综合网| 国产欧美一区二区三区在线看蜜臀 | 亚洲黄色在线视频| 久久国产剧场电影| 欧美丝袜自拍制服另类| 国产精品久久久久久久午夜片 | 国产精品69毛片高清亚洲| 欧美亚洲综合色| 国产精品久久久久三级| 精品无码三级在线观看视频| 日本大香伊一区二区三区| 欧美激情在线免费观看| 精品一区二区三区在线观看国产| 91黄色小视频| ㊣最新国产の精品bt伙计久久| www.亚洲国产| 7777精品伊人久久久大香线蕉 | 国产成人在线视频播放| 欧美伦理电影网| 亚洲最大成人网4388xx| a级高清视频欧美日韩| 久久久综合视频| 久久精品99国产精品| 3d动漫精品啪啪| 日韩影院精彩在线| 欧美乱妇15p| 三级一区在线视频先锋 | 国产精品亚洲人在线观看| 日韩欧美不卡在线观看视频| 五月天精品一区二区三区| 在线观看日韩一区| 一区二区在线观看免费视频播放 | 高清成人在线观看| 国产无人区一区二区三区| 国产精品中文字幕日韩精品| 精品久久一区二区| 激情av综合网| 国产日韩欧美精品在线| 激情深爱一区二区| 久久久久久久精| 懂色av噜噜一区二区三区av | 一区二区三区四区乱视频| 色综合天天做天天爱| 一区二区成人在线观看| 欧美视频日韩视频在线观看| 亚洲五码中文字幕| 91精品久久久久久蜜臀| 六月婷婷色综合| 国产蜜臀av在线一区二区三区| 成人性生交大片免费看中文| 中文字幕一区二区三区蜜月| 91猫先生在线| 丝袜诱惑亚洲看片| 精品国产网站在线观看| 国产资源精品在线观看| 国产日产欧美一区| 99精品久久久久久| 亚洲妇女屁股眼交7| 欧美一区二区三区免费大片| 麻豆久久一区二区| 91精品国产91综合久久蜜臀| 欧美在线高清视频| 中文字幕一区二区三| 色综合久久久网| 日韩国产精品大片| 久久久久久久久久久久久夜| 91在线免费播放| 日韩电影在线观看网站| 久久精品一区二区| 91美女片黄在线| 经典三级视频一区| 亚洲美女偷拍久久|