namespace CSVToTXT { partial class frmCSVToTXT { /// /// Variabile di progettazione necessaria. /// private System.ComponentModel.IContainer components = null; /// /// Pulire le risorse in uso. /// /// ha valore true se le risorse gestite devono essere eliminate, false in caso contrario. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Codice generato da Progettazione Windows Form /// /// Metodo necessario per il supporto della finestra di progettazione. Non modificare /// il contenuto del metodo con l'editor di codice. /// private void InitializeComponent() { this.dtpAnnoMese = new System.Windows.Forms.DateTimePicker(); this.txtCodAzi = new System.Windows.Forms.TextBox(); this.lblData = new System.Windows.Forms.Label(); this.lblCodAzi = new System.Windows.Forms.Label(); this.btnConverti = new System.Windows.Forms.Button(); this.btnCercaFile = new System.Windows.Forms.Button(); this.txtFile = new System.Windows.Forms.TextBox(); this.lblCSV = new System.Windows.Forms.Label(); this.txtArea = new System.Windows.Forms.TextBox(); this.SuspendLayout(); // // dtpAnnoMese // this.dtpAnnoMese.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.dtpAnnoMese.Location = new System.Drawing.Point(110, 47); this.dtpAnnoMese.Name = "dtpAnnoMese"; this.dtpAnnoMese.Size = new System.Drawing.Size(194, 23); this.dtpAnnoMese.TabIndex = 2; // // txtCodAzi // this.txtCodAzi.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtCodAzi.Location = new System.Drawing.Point(110, 6); this.txtCodAzi.MaxLength = 4; this.txtCodAzi.Name = "txtCodAzi"; this.txtCodAzi.Size = new System.Drawing.Size(98, 23); this.txtCodAzi.TabIndex = 1; this.txtCodAzi.Leave += new System.EventHandler(this.txtCodAzi_Leave); // // lblData // this.lblData.AutoSize = true; this.lblData.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblData.Location = new System.Drawing.Point(12, 51); this.lblData.Name = "lblData"; this.lblData.Size = new System.Drawing.Size(75, 15); this.lblData.TabIndex = 18; this.lblData.Text = "Data calcolo:"; // // lblCodAzi // this.lblCodAzi.AutoSize = true; this.lblCodAzi.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblCodAzi.Location = new System.Drawing.Point(12, 9); this.lblCodAzi.Name = "lblCodAzi"; this.lblCodAzi.Size = new System.Drawing.Size(92, 15); this.lblCodAzi.TabIndex = 17; this.lblCodAzi.Text = "Codice Azienda:"; // // btnConverti // this.btnConverti.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnConverti.Location = new System.Drawing.Point(15, 142); this.btnConverti.Name = "btnConverti"; this.btnConverti.Size = new System.Drawing.Size(79, 27); this.btnConverti.TabIndex = 5; this.btnConverti.Text = "Genera TXT"; this.btnConverti.UseVisualStyleBackColor = true; this.btnConverti.Click += new System.EventHandler(this.btnConvertiTxt_Click); // // btnCercaFile // this.btnCercaFile.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnCercaFile.Location = new System.Drawing.Point(537, 103); this.btnCercaFile.Name = "btnCercaFile"; this.btnCercaFile.Size = new System.Drawing.Size(82, 23); this.btnCercaFile.TabIndex = 4; this.btnCercaFile.Text = "Cerca"; this.btnCercaFile.UseVisualStyleBackColor = true; this.btnCercaFile.Click += new System.EventHandler(this.btnCercaFile_Click); // // txtFile // this.txtFile.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtFile.Location = new System.Drawing.Point(14, 103); this.txtFile.Name = "txtFile"; this.txtFile.Size = new System.Drawing.Size(516, 23); this.txtFile.TabIndex = 3; // // lblCSV // this.lblCSV.AutoSize = true; this.lblCSV.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblCSV.Location = new System.Drawing.Point(12, 85); this.lblCSV.Name = "lblCSV"; this.lblCSV.Size = new System.Drawing.Size(124, 15); this.lblCSV.TabIndex = 12; this.lblCSV.Text = "File CSV da convertire:"; // // txtArea // this.txtArea.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtArea.Location = new System.Drawing.Point(14, 175); this.txtArea.Multiline = true; this.txtArea.Name = "txtArea"; this.txtArea.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtArea.Size = new System.Drawing.Size(604, 324); this.txtArea.TabIndex = 6; // // frmCSVToTXT // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(632, 519); this.Controls.Add(this.dtpAnnoMese); this.Controls.Add(this.txtCodAzi); this.Controls.Add(this.lblData); this.Controls.Add(this.lblCodAzi); this.Controls.Add(this.btnConverti); this.Controls.Add(this.btnCercaFile); this.Controls.Add(this.txtFile); this.Controls.Add(this.lblCSV); this.Controls.Add(this.txtArea); this.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Name = "frmCSVToTXT"; this.ShowIcon = false; this.Text = "Converti da CSV a TXT"; this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.DateTimePicker dtpAnnoMese; private System.Windows.Forms.TextBox txtCodAzi; private System.Windows.Forms.Label lblData; private System.Windows.Forms.Label lblCodAzi; private System.Windows.Forms.Button btnConverti; private System.Windows.Forms.Button btnCercaFile; private System.Windows.Forms.TextBox txtFile; private System.Windows.Forms.Label lblCSV; private System.Windows.Forms.TextBox txtArea; } }