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

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

?? outstorage.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>
	/// Form1 的摘要說明。
	/// </summary>
	public class OutStorage : System.Windows.Forms.Form
	{
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.GroupBox groupBox1;
		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.Button add_button;
		private System.Windows.Forms.Button send_button;
		private System.Windows.Forms.Button cancel_button;
		private System.Data.SqlClient.SqlDataAdapter OutStgAdapter;
		private System.Data.SqlClient.SqlConnection sqlConnection1;
		private DataTable OutStgInfo=new DataTable();
		private DataSet OutStgset=new DataSet();
		private CurrencyManager OSReport;
		private SqlTransaction OutStgTran;
		private SqlConnection MyConn = new SqlConnection("server=.;Trusted_Connection=yes;user=sa;pwd=1;database=storage");
		
		private string str="";
		
		private System.Windows.Forms.DataGrid dataGrid1;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.TextBox textExp;
		private System.Windows.Forms.TextBox textDep;
		private string oldtxtAmount="";//重新編輯前的還庫數(shù)量值
		private bool change=false;
		private System.Data.SqlClient.SqlCommand sqlSelectCommand1;
		private System.Data.SqlClient.SqlCommand sqlInsertCommand1;
		private System.Data.SqlClient.SqlCommand sqlUpdateCommand1;
		private System.Data.SqlClient.SqlCommand sqlDeleteCommand1;//還庫數(shù)量值狀態(tài)更改標識
		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

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

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

		/// <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.cancel_button = new System.Windows.Forms.Button();
			this.send_button = new System.Windows.Forms.Button();
			this.add_button = new System.Windows.Forms.Button();
			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.groupBox1 = new System.Windows.Forms.GroupBox();
			this.textExp = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.textMan = new System.Windows.Forms.TextBox();
			this.textAmount = new System.Windows.Forms.TextBox();
			this.textDep = new System.Windows.Forms.TextBox();
			this.textDate = new System.Windows.Forms.TextBox();
			this.textNum2 = new System.Windows.Forms.TextBox();
			this.OutStgAdapter = 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.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.SuspendLayout();
			// 
			// 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(368, 104);
			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);
			// 
			// 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(368, 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);
			// 
			// 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(368, 24);
			this.add_button.Name = "add_button";
			this.add_button.Size = new System.Drawing.Size(72, 24);
			this.add_button.TabIndex = 0;
			this.add_button.Text = "新增";
			this.add_button.Click += new System.EventHandler(this.add_button_Click);
			// 
			// label6
			// 
			this.label6.Location = new System.Drawing.Point(16, 88);
			this.label6.Name = "label6";
			this.label6.Size = new System.Drawing.Size(64, 16);
			this.label6.TabIndex = 4;
			this.label6.Text = "經辦人:";
			// 
			// label5
			// 
			this.label5.Location = new System.Drawing.Point(176, 56);
			this.label5.Name = "label5";
			this.label5.Size = new System.Drawing.Size(56, 16);
			this.label5.TabIndex = 3;
			this.label5.Text = "*數(shù)量:";
			// 
			// label4
			// 
			this.label4.Location = new System.Drawing.Point(8, 56);
			this.label4.Name = "label4";
			this.label4.Size = new System.Drawing.Size(64, 16);
			this.label4.TabIndex = 2;
			this.label4.Text = "使用部門:";
			// 
			// label3
			// 
			this.label3.Location = new System.Drawing.Point(176, 24);
			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(24, 24);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(56, 16);
			this.label2.TabIndex = 0;
			this.label2.Text = "*設備號:";
			// 
			// groupBox1
			// 
			this.groupBox1.Controls.Add(this.textExp);
			this.groupBox1.Controls.Add(this.label1);
			this.groupBox1.Controls.Add(this.textMan);
			this.groupBox1.Controls.Add(this.textAmount);
			this.groupBox1.Controls.Add(this.textDep);
			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, 176);
			this.groupBox1.Name = "groupBox1";
			this.groupBox1.Size = new System.Drawing.Size(456, 160);
			this.groupBox1.TabIndex = 1;
			this.groupBox1.TabStop = false;
			this.groupBox1.Text = "出庫信息管理";
			// 
			// textExp
			// 
			this.textExp.Location = new System.Drawing.Point(80, 120);
			this.textExp.Name = "textExp";
			this.textExp.Size = new System.Drawing.Size(240, 21);
			this.textExp.TabIndex = 11;
			this.textExp.Text = "";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(16, 120);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(56, 24);
			this.label1.TabIndex = 10;
			this.label1.Text = "備注:";
			// 
			// textMan
			// 
			this.textMan.Location = new System.Drawing.Point(80, 88);
			this.textMan.Name = "textMan";
			this.textMan.Size = new System.Drawing.Size(240, 21);
			this.textMan.TabIndex = 9;
			this.textMan.Text = "";
			// 
			// textAmount
			// 
			this.textAmount.Location = new System.Drawing.Point(240, 56);
			this.textAmount.Name = "textAmount";
			this.textAmount.Size = new System.Drawing.Size(80, 21);
			this.textAmount.TabIndex = 8;
			this.textAmount.Text = "";
			this.textAmount.Leave += new System.EventHandler(this.textAmount_Leave);
			// 
			// textDep
			// 
			this.textDep.Location = new System.Drawing.Point(80, 56);
			this.textDep.Name = "textDep";
			this.textDep.Size = new System.Drawing.Size(80, 21);
			this.textDep.TabIndex = 7;
			this.textDep.Text = "";
			// 
			// textDate
			// 
			this.textDate.Location = new System.Drawing.Point(240, 24);
			this.textDate.Name = "textDate";
			this.textDate.Size = new System.Drawing.Size(80, 21);
			this.textDate.TabIndex = 6;
			this.textDate.Text = "";
			// 
			// textNum2
			// 
			this.textNum2.Location = new System.Drawing.Point(80, 24);
			this.textNum2.Name = "textNum2";
			this.textNum2.Size = new System.Drawing.Size(80, 21);
			this.textNum2.TabIndex = 5;
			this.textNum2.Text = "";
			// 
			// OutStgAdapter
			// 
			this.OutStgAdapter.DeleteCommand = this.sqlDeleteCommand1;
			this.OutStgAdapter.InsertCommand = this.sqlInsertCommand1;
			this.OutStgAdapter.SelectCommand = this.sqlSelectCommand1;
			this.OutStgAdapter.TableMappings.AddRange(new System.Data.Common.DataTableMapping[] {
																									new System.Data.Common.DataTableMapping("Table", "storage_out", new System.Data.Common.DataColumnMapping[] {
																																																				   new System.Data.Common.DataColumnMapping("設備號", "設備號"),
																																																				   new System.Data.Common.DataColumnMapping("出庫日期", "出庫日期"),
																																																				   new System.Data.Common.DataColumnMapping("使用部門", "使用部門"),
																																																				   new System.Data.Common.DataColumnMapping("數(shù)量", "數(shù)量"),
																																																				   new System.Data.Common.DataColumnMapping("經辦人", "經辦人"),
																																																				   new System.Data.Common.DataColumnMapping("備注", "備注")})});
			this.OutStgAdapter.UpdateCommand = this.sqlUpdateCommand1;
			// 
			// sqlDeleteCommand1
			// 
			this.sqlDeleteCommand1.CommandText = @"DELETE FROM storage_out WHERE (出庫日期 = @Original_出庫日期) AND (使用部門 = @Original_使用部門 OR @Original_使用部門 IS NULL AND 使用部門 IS NULL) AND (備注 = @Original_備注 OR @Original_備注 IS NULL AND 備注 IS NULL) AND (數(shù)量 = @Original_數(shù)量) AND (經辦人 = @Original_經辦人 OR @Original_經辦人 IS NULL AND 經辦人 IS NULL) AND (設備號 = @Original_設備號)";
			this.sqlDeleteCommand1.Connection = this.sqlConnection1;
			this.sqlDeleteCommand1.Parameters.Add(new System.Data.SqlClient.SqlParameter("@Original_出庫日期", System.Data.SqlDbType.DateTime, 8, System.Data.ParameterDirection.Input, false, ((System.Byte)(0)), ((System.Byte)(0)), "出庫日期", System.Data.DataRowVersion.Original, null));

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线成人免费观看| 欧美午夜在线一二页| 久久精品国产秦先生| 福利电影一区二区三区| 欧美做爰猛烈大尺度电影无法无天| 欧美一区二区精品| 亚洲免费在线电影| 国产精品99久| 欧美一卡二卡三卡| 亚洲资源中文字幕| jlzzjlzz欧美大全| 国产亚洲欧美色| 免费高清在线视频一区·| 在线日韩国产精品| 亚洲色欲色欲www在线观看| 国产自产v一区二区三区c| 欧美日韩成人一区二区| 亚洲精品水蜜桃| 99久久久国产精品| 国产精品进线69影院| 国产喂奶挤奶一区二区三区| 久久精品国产久精国产爱| www.性欧美| 欧美韩国日本不卡| 国产成人综合视频| 亚洲综合色丁香婷婷六月图片| 国产精品亚洲一区二区三区妖精| 精品国产免费视频| 激情综合色播激情啊| 精品噜噜噜噜久久久久久久久试看 | 性做久久久久久免费观看| 91欧美激情一区二区三区成人| 国产女人18毛片水真多成人如厕| 激情国产一区二区 | 国产酒店精品激情| ww亚洲ww在线观看国产| 国产一区在线观看视频| 久久久久久久综合狠狠综合| 91麻豆免费观看| 国产白丝网站精品污在线入口| 日韩精品一区二区三区视频在线观看| 日本欧美在线观看| 日韩免费性生活视频播放| 精品一区精品二区高清| 精品国产91亚洲一区二区三区婷婷| 久久国产人妖系列| 国产日韩精品一区| 91视频精品在这里| 午夜免费久久看| 精品免费国产一区二区三区四区| 欧美一区二区美女| 国产在线一区二区| 日韩一区在线免费观看| 欧美在线综合视频| 蜜臀久久99精品久久久久宅男| 精品电影一区二区| 波多野结衣在线aⅴ中文字幕不卡| 亚洲欧美激情小说另类| 6080午夜不卡| 日韩精品欧美精品| 99精品久久99久久久久| 亚洲一区二区av在线| 欧美福利视频一区| 豆国产96在线|亚洲| 夜夜嗨av一区二区三区中文字幕| 在线电影国产精品| 国产suv精品一区二区三区| 亚洲综合色噜噜狠狠| 精品sm在线观看| 在线一区二区三区| 国产精品影视天天线| 一区二区三区在线视频播放| 日韩欧美专区在线| 92国产精品观看| 麻豆精品新av中文字幕| 亚洲视频免费看| 欧美xxxxx牲另类人与| 色婷婷激情综合| 国产一区二区三区黄视频| 亚洲图片欧美一区| 国产精品午夜春色av| 蜜桃视频一区二区| 精品无人区卡一卡二卡三乱码免费卡| 亚洲精品在线观| 欧美在线观看视频一区二区| 看电影不卡的网站| 亚洲午夜一区二区三区| 国产精品私房写真福利视频| 欧美一区二区三区在线电影| 99久久免费视频.com| 黄页网站大全一区二区| 日韩国产高清影视| 又紧又大又爽精品一区二区| 中文一区二区在线观看| 精品日韩在线一区| 日韩一区二区三区免费看| 色婷婷综合久久久中文一区二区| 国产精品888| 精品一区二区三区香蕉蜜桃| 亚洲aⅴ怡春院| 夜夜爽夜夜爽精品视频| 亚洲欧洲三级电影| 国产精品久久久久久久蜜臀| 久久久精品国产免大香伊| 欧美大胆一级视频| 日韩一区二区免费视频| 51精品视频一区二区三区| 国产亚洲成年网址在线观看| 在线国产亚洲欧美| 色婷婷综合五月| 99精品欧美一区二区蜜桃免费| 成人黄色777网| 精品国产亚洲在线| 精品国产髙清在线看国产毛片| 91精品国产乱码久久蜜臀| 69久久99精品久久久久婷婷| 欧美日韩国产美女| 欧美一区二区免费观在线| 777xxx欧美| 日韩美女视频一区二区在线观看| 51精品国自产在线| 精品久久久久香蕉网| 久久品道一品道久久精品| 久久蜜桃一区二区| 国产精品免费视频一区| 最新久久zyz资源站| 伊人婷婷欧美激情| 天堂va蜜桃一区二区三区漫画版| 亚洲大尺度视频在线观看| 麻豆传媒一区二区三区| 国产一区二区在线视频| 顶级嫩模精品视频在线看| 91浏览器入口在线观看| 亚洲精品老司机| 欧美日韩国产精品自在自线| 色综合天天综合在线视频| 精品视频1区2区| 日韩精品一区二区三区视频播放| 欧美一区二区免费视频| 国产欧美一区二区三区鸳鸯浴| 国产精品初高中害羞小美女文| 亚洲精品视频在线观看网站| 蜜桃一区二区三区四区| 国产成人精品网址| 欧美三级电影网站| 精品理论电影在线| 亚洲色图欧洲色图婷婷| 日韩精品久久理论片| 国产69精品久久久久毛片| 在线观看成人免费视频| 2020国产精品自拍| 一区二区免费在线播放| 麻豆国产一区二区| 色女孩综合影院| 精品少妇一区二区| 一区二区久久久| 日日摸夜夜添夜夜添国产精品 | 丁香婷婷综合色啪| 在线观看网站黄不卡| 久久精品夜色噜噜亚洲aⅴ| 亚洲美女屁股眼交| 国产麻豆午夜三级精品| 欧洲人成人精品| 国产精品对白交换视频| 蓝色福利精品导航| 欧美影院精品一区| 国产精品电影一区二区| 蜜臀av性久久久久蜜臀aⅴ四虎 | 亚洲欧洲综合另类在线| 美国十次综合导航| 欧美日韩美少妇| 国产精品电影一区二区| 国产综合色精品一区二区三区| 精品视频色一区| 日韩久久一区二区| 国产成人免费视频网站 | 欧美日韩成人综合天天影院| 国产精品成人免费在线| 国产精品一区二区久久精品爱涩 | 最新不卡av在线| 国产精品自在欧美一区| 日韩午夜电影av| 亚洲一区成人在线| 欧洲另类一二三四区| 有码一区二区三区| jizzjizzjizz欧美| 国产精品午夜在线| 国产91色综合久久免费分享| 欧美tickling网站挠脚心| 日日摸夜夜添夜夜添国产精品| 欧美天堂亚洲电影院在线播放| 中文字幕综合网| 99久久免费视频.com| 亚洲图片欧美激情| 91丨porny丨在线| 1000精品久久久久久久久| 99久久精品国产一区二区三区| 久久伊人中文字幕| 国产精品小仙女| 国产精品天美传媒沈樵|