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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? returnstg.cs

?? 物流行業的倉庫庫存管理系統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="";//重新編輯前的還庫數量值
		private bool change=false;//還庫數量值狀態更改標識
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

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

			//
			// TODO: 在 InitializeComponent 調用后添加任何構造函數代碼
			//
		}

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

		#region Windows 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內容。
		/// </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 = "經辦人:";
			// 
			// 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 = "*數量:";
			// 
			// 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 = "*設備號:";
			// 
			// 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 = "";

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
中文字幕一区二| 久久久影视传媒| 亚洲国产精品嫩草影院| 在线看日本不卡| 日韩综合在线视频| 91精品国产入口| 久久99精品一区二区三区 | 国产精品国产三级国产aⅴ原创| 欧美日韩在线播放| 亚洲成人av一区| 欧美精品一卡二卡| 精品一区二区三区视频在线观看| 精品欧美乱码久久久久久| 国产精品系列在线播放| 亚洲精品久久7777| 欧美一区二区三区免费| 国产精品69毛片高清亚洲| 亚洲日本va午夜在线影院| 在线免费一区三区| 麻豆91精品91久久久的内涵| 国产亚洲欧洲997久久综合| 91免费版在线看| 日韩高清欧美激情| 国产日韩欧美高清| 欧美无乱码久久久免费午夜一区 | 国产成人在线看| 亚洲视频一区二区在线观看| 欧美三级电影一区| 国产精品91xxx| 亚洲小少妇裸体bbw| 26uuu精品一区二区三区四区在线| 97久久超碰国产精品| 亚洲va欧美va人人爽| 亚洲国产精品一区二区www| 亚洲精品一区二区精华| 在线免费不卡视频| 韩国中文字幕2020精品| 亚洲国产综合视频在线观看| 久久精品一区二区三区av| 欧美日韩中字一区| 99久久精品99国产精品| 麻豆精品在线视频| 亚洲综合在线电影| 国产亚洲综合性久久久影院| 欧美日韩国产综合视频在线观看| 成人午夜av电影| 久久99久久99精品免视看婷婷| 亚洲狼人国产精品| 国产偷国产偷亚洲高清人白洁| 欧美一区日韩一区| 欧美视频一区二区三区| 99久久精品99国产精品| 国产sm精品调教视频网站| 美女www一区二区| 五月综合激情婷婷六月色窝| 综合激情网...| 欧美国产激情一区二区三区蜜月| 日韩情涩欧美日韩视频| 欧美日韩国产综合一区二区三区 | 一区二区三区不卡视频| 国产欧美精品一区aⅴ影院| 亚洲精品在线网站| 日韩欧美色综合| 日韩一区二区在线观看| 欧美人狂配大交3d怪物一区| 色综合久久综合中文综合网| aaa国产一区| 成人毛片视频在线观看| 国产精品91一区二区| 国产精选一区二区三区| 久久国产夜色精品鲁鲁99| 男女激情视频一区| 日韩二区在线观看| 日韩电影在线免费看| 亚洲第一成人在线| 亚洲福中文字幕伊人影院| 亚洲午夜久久久久| 亚洲18女电影在线观看| 亚洲成人中文在线| 视频在线在亚洲| 青青草国产精品97视觉盛宴| 91成人在线精品| 91麻豆国产精品久久| 91免费看`日韩一区二区| 色美美综合视频| 欧美亚洲综合一区| 欧美日韩精品系列| 日韩免费高清av| 精品久久人人做人人爽| 国产三级一区二区| 亚洲欧美自拍偷拍| 亚洲国产一区二区在线播放| 天堂久久久久va久久久久| 视频一区视频二区在线观看| 美腿丝袜亚洲色图| 国产精品中文字幕欧美| 不卡区在线中文字幕| 一本久久精品一区二区| 欧美日韩三级在线| 欧美大胆一级视频| 国产精品网曝门| 一区二区在线观看av| 日韩精品一区第一页| 国产精品性做久久久久久| 成人aaaa免费全部观看| 日本精品一级二级| 日韩一区二区三区在线| 亚洲国产精品高清| 亚洲五码中文字幕| 国产美女av一区二区三区| 成人精品免费网站| 欧美日韩成人综合在线一区二区| 精品日韩一区二区三区| 亚洲欧洲成人av每日更新| 日韩精品免费专区| 丁香亚洲综合激情啪啪综合| 欧美三电影在线| 久久久三级国产网站| 亚洲免费av观看| 国产一区在线精品| 欧美伊人精品成人久久综合97| www激情久久| 一区二区三区在线观看网站| 男人的j进女人的j一区| 一本一本大道香蕉久在线精品| 日韩一区二区在线看片| 亚洲图片你懂的| 极品美女销魂一区二区三区免费| 99精品热视频| 久久综合九色综合欧美98| 亚洲福利视频一区二区| www.av精品| 精品国产自在久精品国产| 一区二区三区在线观看视频| 国产精品18久久久久久久久久久久| 欧美午夜精品久久久| 国产精品第四页| 国产在线精品一区二区不卡了| 日本精品一级二级| 国产精品人成在线观看免费| 美女精品自拍一二三四| 欧美午夜理伦三级在线观看| 日本一区二区不卡视频| 精一区二区三区| 欧美巨大另类极品videosbest | 日本一区二区三区国色天香| 奇米888四色在线精品| 欧美日韩在线播放一区| 久久成人免费电影| 欧美麻豆精品久久久久久| 日韩一区欧美小说| 国产成人午夜99999| 日韩美女视频在线| 日韩高清电影一区| 欧美日韩在线观看一区二区| 伊人性伊人情综合网| 91香蕉视频mp4| 国产精品剧情在线亚洲| 成人精品亚洲人成在线| 国产日产亚洲精品系列| 国产成人精品影院| 久久久国产午夜精品| 久久99日本精品| 精品国精品自拍自在线| 久久99精品国产麻豆婷婷| 这里只有精品电影| 偷窥国产亚洲免费视频| 91精品综合久久久久久| 性做久久久久久久免费看| 欧美影视一区在线| 亚洲国产精品一区二区久久恐怖片 | 一本到不卡免费一区二区| 中文字幕不卡在线观看| 99久久综合国产精品| 亚洲国产精品成人综合| 成人综合在线网站| 国产精品蜜臀在线观看| 99热国产精品| 亚洲电影在线播放| 91精品久久久久久蜜臀| 另类小说视频一区二区| 精品国精品国产| 成人性生交大合| 亚洲欧洲美洲综合色网| 91久久精品日日躁夜夜躁欧美| 一区二区三区四区不卡在线 | 91色综合久久久久婷婷| 一区二区三区国产精华| 欧美疯狂性受xxxxx喷水图片| 日韩高清不卡一区二区三区| 久久先锋影音av鲁色资源网| 国产精品亚洲视频| 亚洲欧美二区三区| 欧美日韩在线不卡| 国产麻豆视频一区二区| 国产精品毛片大码女人| 欧美日韩一区二区三区高清 | 国产99久久久国产精品免费看 | 亚洲另类色综合网站| 欧美女孩性生活视频|