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

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

?? form1.designer.cs

?? Excel轉換導入進SqlServer數據庫例程
?? CS
字號:
?namespace WindowsApplication1
{
    partial class Form1
    {
        /// <summary>
        /// 必需的設計器變量。
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// 清理所有正在使用的資源。
        /// </summary>
        /// <param name="disposing">如果應釋放托管資源,為 true;否則為 false。</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows 窗體設計器生成的代碼

        /// <summary>
        /// 設計器支持所需的方法 - 不要
        /// 使用代碼編輯器修改此方法的內容。
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.label1 = new System.Windows.Forms.Label();
            this.ServiceIp = new System.Windows.Forms.TextBox();
            this.button1 = new System.Windows.Forms.Button();
            this.label2 = new System.Windows.Forms.Label();
            this.label3 = new System.Windows.Forms.Label();
            this.UserName = new System.Windows.Forms.TextBox();
            this.PassWord = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.ExcelFileName = new System.Windows.Forms.TextBox();
            this.button2 = new System.Windows.Forms.Button();
            this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
            this.button3 = new System.Windows.Forms.Button();
            this.button4 = new System.Windows.Forms.Button();
            this.ServicePort = new System.Windows.Forms.TextBox();
            this.label5 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.dataName = new System.Windows.Forms.TextBox();
            this.progressBar1 = new System.Windows.Forms.ProgressBar();
            this.SuspendLayout();
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(10, 18);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(107, 12);
            this.label1.TabIndex = 0;
            this.label1.Text = "SQL服務器IP地址:";
            // 
            // ServiceIp
            // 
            this.ServiceIp.Location = new System.Drawing.Point(123, 11);
            this.ServiceIp.Name = "ServiceIp";
            this.ServiceIp.Size = new System.Drawing.Size(161, 21);
            this.ServiceIp.TabIndex = 1;
            this.ServiceIp.Text = "192.168.0.26";
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(374, 77);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 5;
            this.button1.Text = "測試連接";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(22, 50);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(95, 12);
            this.label2.TabIndex = 3;
            this.label2.Text = "SQL登錄用戶名:";
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(34, 84);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(83, 12);
            this.label3.TabIndex = 4;
            this.label3.Text = "SQL登錄密碼:";
            // 
            // UserName
            // 
            this.UserName.Location = new System.Drawing.Point(123, 45);
            this.UserName.Name = "UserName";
            this.UserName.Size = new System.Drawing.Size(161, 21);
            this.UserName.TabIndex = 3;
            this.UserName.Text = "sa";
            // 
            // PassWord
            // 
            this.PassWord.Location = new System.Drawing.Point(123, 81);
            this.PassWord.Name = "PassWord";
            this.PassWord.Size = new System.Drawing.Size(161, 21);
            this.PassWord.TabIndex = 4;
            this.PassWord.Text = "sa";
            this.PassWord.UseSystemPasswordChar = true;
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(22, 123);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(95, 12);
            this.label4.TabIndex = 7;
            this.label4.Text = "Excel導入文件:";
            // 
            // ExcelFileName
            // 
            this.ExcelFileName.Location = new System.Drawing.Point(123, 120);
            this.ExcelFileName.Name = "ExcelFileName";
            this.ExcelFileName.Size = new System.Drawing.Size(260, 21);
            this.ExcelFileName.TabIndex = 7;
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(391, 120);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(58, 21);
            this.button2.TabIndex = 6;
            this.button2.Text = "瀏覽...";
            this.button2.UseVisualStyleBackColor = true;
            this.button2.Click += new System.EventHandler(this.button2_Click);
            // 
            // openFileDialog1
            // 
            this.openFileDialog1.DefaultExt = "xls";
            this.openFileDialog1.Filter = "所有文件(*.*)|*.*|Excel文件(*.xls)|";
            this.openFileDialog1.FilterIndex = 2;
            this.openFileDialog1.Title = "選擇Excel文件";
            // 
            // button3
            // 
            this.button3.Location = new System.Drawing.Point(117, 161);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(75, 23);
            this.button3.TabIndex = 8;
            this.button3.Text = "導入數據";
            this.button3.UseVisualStyleBackColor = true;
            this.button3.Click += new System.EventHandler(this.button3_Click);
            // 
            // button4
            // 
            this.button4.Location = new System.Drawing.Point(270, 160);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(75, 23);
            this.button4.TabIndex = 9;
            this.button4.Text = "關閉窗口";
            this.button4.UseVisualStyleBackColor = true;
            this.button4.Click += new System.EventHandler(this.button4_Click);
            // 
            // ServicePort
            // 
            this.ServicePort.Location = new System.Drawing.Point(349, 12);
            this.ServicePort.Name = "ServicePort";
            this.ServicePort.Size = new System.Drawing.Size(60, 21);
            this.ServicePort.TabIndex = 2;
            this.ServicePort.Text = "1433";
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(290, 16);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(53, 12);
            this.label5.TabIndex = 13;
            this.label5.Text = "端口號:";
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(290, 48);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(53, 12);
            this.label6.TabIndex = 14;
            this.label6.Text = "數據庫:";
            // 
            // dataName
            // 
            this.dataName.Location = new System.Drawing.Point(349, 45);
            this.dataName.Name = "dataName";
            this.dataName.Size = new System.Drawing.Size(101, 21);
            this.dataName.TabIndex = 15;
            this.dataName.Text = "Data";
            // 
            // progressBar1
            // 
            this.progressBar1.BackColor = System.Drawing.SystemColors.Control;
            this.progressBar1.Cursor = System.Windows.Forms.Cursors.Arrow;
            this.progressBar1.Location = new System.Drawing.Point(13, 189);
            this.progressBar1.Name = "progressBar1";
            this.progressBar1.Size = new System.Drawing.Size(437, 10);
            this.progressBar1.Style = System.Windows.Forms.ProgressBarStyle.Continuous;
            this.progressBar1.TabIndex = 16;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(462, 206);
            this.Controls.Add(this.progressBar1);
            this.Controls.Add(this.dataName);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.label5);
            this.Controls.Add(this.ServicePort);
            this.Controls.Add(this.button4);
            this.Controls.Add(this.button3);
            this.Controls.Add(this.button2);
            this.Controls.Add(this.ExcelFileName);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.PassWord);
            this.Controls.Add(this.UserName);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.ServiceIp);
            this.Controls.Add(this.label1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.Name = "Form1";
            this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "Excel導入SQL簡易版";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.TextBox ServiceIp;
        private System.Windows.Forms.Button button1;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.TextBox UserName;
        private System.Windows.Forms.TextBox PassWord;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.TextBox ExcelFileName;
        private System.Windows.Forms.Button button2;
        private System.Windows.Forms.OpenFileDialog openFileDialog1;
        private System.Windows.Forms.Button button3;
        private System.Windows.Forms.Button button4;
        private System.Windows.Forms.TextBox ServicePort;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.TextBox dataName;
        private System.Windows.Forms.ProgressBar progressBar1;
    }
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色悠悠亚洲一区二区| 亚洲福利视频导航| 激情文学综合丁香| 亚洲美女屁股眼交| 欧美大度的电影原声| 91亚洲精华国产精华精华液| 男女男精品视频| 一区二区三区中文免费| 2022国产精品视频| 欧美日韩一区二区三区高清| 懂色av一区二区夜夜嗨| 七七婷婷婷婷精品国产| 亚洲激情图片小说视频| 欧美激情一区二区三区四区| 91精品福利在线一区二区三区| 9i在线看片成人免费| 国产在线一区观看| 日韩专区欧美专区| 亚洲一区影音先锋| 亚洲人123区| 欧美极品美女视频| 久久尤物电影视频在线观看| 欧美一区二区三区视频| 欧美三级欧美一级| 色婷婷精品久久二区二区蜜臂av | 国产精品沙发午睡系列990531| 91精品国产综合久久久蜜臀粉嫩| 91高清在线观看| 精品久久一区二区| 亚州成人在线电影| 亚洲青青青在线视频| 亚洲欧洲性图库| 国产精品久久综合| 日本一区二区三区在线不卡| 337p粉嫩大胆噜噜噜噜噜91av| 欧美一二三四在线| 欧美一区二区三区在线电影| 欧美日韩国产在线播放网站| 欧美性受xxxx| 欧美日韩在线播| 欧美日韩一区二区三区高清 | 欧美精品九九99久久| 在线观看欧美精品| 五月开心婷婷久久| 午夜在线成人av| 天使萌一区二区三区免费观看| 亚洲综合激情另类小说区| 一区二区三区中文字幕在线观看| 国产精品的网站| 国产精品白丝在线| 伊人婷婷欧美激情| 亚洲女性喷水在线观看一区| 亚洲精品乱码久久久久久黑人| 亚洲免费三区一区二区| 亚洲综合一二三区| 亚欧色一区w666天堂| 美美哒免费高清在线观看视频一区二区 | 国产一区二区三区在线观看免费 | 一本一本大道香蕉久在线精品 | 老色鬼精品视频在线观看播放| 蜜桃久久久久久| 捆绑变态av一区二区三区| 国产精品综合网| 精品一区二区三区香蕉蜜桃| 韩国一区二区三区| jlzzjlzz国产精品久久| 色偷偷久久人人79超碰人人澡| 欧美色综合久久| 欧美一区永久视频免费观看| 精品福利av导航| 国产精品美女久久久久久久久久久| 综合欧美一区二区三区| 亚洲一区在线视频| 久久99这里只有精品| 成人精品视频一区二区三区| 在线精品视频一区二区三四| 日韩免费一区二区| 中文字幕一区二区三区蜜月| 亚洲成人免费在线观看| 美女视频一区在线观看| 成人福利视频网站| 欧美久久久一区| 中文无字幕一区二区三区| 亚洲最新在线观看| 狠狠色伊人亚洲综合成人| av电影天堂一区二区在线观看| 欧美日韩国产bt| 国产精品蜜臀在线观看| 五月婷婷综合网| 成人福利视频在线| 欧美大黄免费观看| 亚洲一区二区高清| 久久国产精品99久久久久久老狼 | 欧美午夜电影网| 欧美精品一区视频| 一区二区三区在线观看动漫| 狠狠色2019综合网| 欧美日韩一区二区三区四区五区 | 国产黄色精品视频| 欧美日韩精品一二三区| 亚洲国产成人午夜在线一区| 日本视频一区二区| 色狠狠综合天天综合综合| 久久久久综合网| 日本三级亚洲精品| 色综合激情久久| 中文字幕第一页久久| 老司机午夜精品| 欧美日韩成人高清| 亚洲欧美电影一区二区| 国产成人精品免费网站| 日韩欧美在线一区二区三区| 亚洲伊人伊色伊影伊综合网| 国产黄人亚洲片| 精品国产亚洲在线| 精品va天堂亚洲国产| 天堂va蜜桃一区二区三区漫画版 | 色综合久久六月婷婷中文字幕| 久久综合九色综合97婷婷| 图片区小说区区亚洲影院| 91蝌蚪porny成人天涯| 欧美高清在线视频| 国产成人综合精品三级| 91搞黄在线观看| 亚洲激情自拍视频| 99国产欧美另类久久久精品| 国产亚洲短视频| 国产一区二区三区四| 欧美一区二区私人影院日本| 五月婷婷激情综合网| 欧美三区在线视频| 一区二区欧美视频| 91久久一区二区| 亚洲精品美腿丝袜| 色噜噜狠狠成人中文综合| 亚洲免费观看高清完整版在线观看 | 成人综合婷婷国产精品久久| 欧美精品一区二区蜜臀亚洲| 久久精品国产精品亚洲红杏| 欧美一区二区三区啪啪| 日韩精品电影在线| 欧美一区二区三区视频免费| 男人的天堂亚洲一区| 欧美一区二区久久| 毛片av一区二区| 欧美大胆人体bbbb| 国产精品77777竹菊影视小说| 91麻豆免费观看| 亚洲精品免费电影| 欧美日韩国产高清一区二区三区| 亚洲成人福利片| 91精品国产综合久久精品app| 日本美女一区二区| 日韩精品一区二区三区中文不卡 | 视频一区视频二区在线观看| 欧美日韩精品三区| 青椒成人免费视频| 久久亚洲精品小早川怜子| 成人一区二区视频| 亚洲欧美区自拍先锋| 欧美视频在线不卡| 日本不卡一区二区三区| 精品福利在线导航| 91香蕉视频污| 午夜伦理一区二区| 精品国产伦一区二区三区观看方式 | 日韩av电影一区| 亚洲精品一区二区三区福利 | 成人av网址在线| 亚洲精品伦理在线| 日韩欧美中文字幕制服| 国产精品一卡二| 亚洲精品欧美二区三区中文字幕| 在线综合+亚洲+欧美中文字幕| 久久国内精品自在自线400部| 欧美国产在线观看| 青青草精品视频| 欧美国产一区二区在线观看| 在线视频国产一区| 日本美女一区二区三区视频| 中文字幕欧美三区| 欧美日本乱大交xxxxx| 国产精品一区一区| 夜夜精品浪潮av一区二区三区| 精品久久久久久久久久久久久久久久久| 国产成人午夜片在线观看高清观看| 亚洲精品欧美专区| 久久久久国产精品人| 日韩视频一区在线观看| 天天av天天翘天天综合网| 国产欧美中文在线| 91精品国产综合久久福利软件| 99精品视频中文字幕| 精品亚洲欧美一区| 亚洲综合自拍偷拍| 日本一二三四高清不卡| 欧美一区二区三区电影| 在线观看av一区| 粉嫩嫩av羞羞动漫久久久 | 国产日韩欧美激情|