Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
namespace csvTojSon
{
    partial class frmMain
    {
        /// <summary>
        /// Variabile di progettazione necessaria.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Liberare le risorse in uso.
        /// </summary>
        /// <param name="disposing">ha valore true se le risorse gestite devono essere eliminate, false in caso contrario.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Codice generato da Progettazione Windows Form

        /// <summary>
        /// Metodo necessario per il supporto della finestra di progettazione. Non modificare
        /// il contenuto del metodo con l'editor di codice.
        /// </summary>
        private void InitializeComponent()
        {
            this.btnSource = new System.Windows.Forms.Button();
            this.txtSourceFile = new System.Windows.Forms.TextBox();
            this.txtDestionationFile = new System.Windows.Forms.TextBox();
            this.btnDestination = new System.Windows.Forms.Button();
            this.btnOk = new System.Windows.Forms.Button();
            this.chkFirstRowCol = new System.Windows.Forms.CheckBox();
            this.SuspendLayout();
            // 
            // btnSource
            // 
            this.btnSource.Location = new System.Drawing.Point(489, 53);
            this.btnSource.Name = "btnSource";
            this.btnSource.Size = new System.Drawing.Size(104, 28);
            this.btnSource.TabIndex = 1;
            this.btnSource.Text = "Browse...";
            this.btnSource.UseVisualStyleBackColor = true;
            this.btnSource.Click += new System.EventHandler(this.btnSource_Click);
            // 
            // txtSourceFile
            // 
            this.txtSourceFile.Location = new System.Drawing.Point(12, 58);
            this.txtSourceFile.Name = "txtSourceFile";
            this.txtSourceFile.Size = new System.Drawing.Size(471, 20);
            this.txtSourceFile.TabIndex = 0;
            // 
            // txtDestionationFile
            // 
            this.txtDestionationFile.Location = new System.Drawing.Point(12, 101);
            this.txtDestionationFile.Name = "txtDestionationFile";
            this.txtDestionationFile.Size = new System.Drawing.Size(471, 20);
            this.txtDestionationFile.TabIndex = 2;
            // 
            // btnDestination
            // 
            this.btnDestination.Location = new System.Drawing.Point(489, 96);
            this.btnDestination.Name = "btnDestination";
            this.btnDestination.Size = new System.Drawing.Size(104, 28);
            this.btnDestination.TabIndex = 3;
            this.btnDestination.Text = "Browse...";
            this.btnDestination.UseVisualStyleBackColor = true;
            this.btnDestination.Click += new System.EventHandler(this.btnDestination_Click);
            // 
            // btnOk
            // 
            this.btnOk.Location = new System.Drawing.Point(489, 139);
            this.btnOk.Name = "btnOk";
            this.btnOk.Size = new System.Drawing.Size(104, 25);
            this.btnOk.TabIndex = 4;
            this.btnOk.Text = "&Ok";
            this.btnOk.UseVisualStyleBackColor = true;
            this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
            // 
            // chkFirstRowCol
            // 
            this.chkFirstRowCol.AutoSize = true;
            this.chkFirstRowCol.Checked = true;
            this.chkFirstRowCol.CheckState = System.Windows.Forms.CheckState.Checked;
            this.chkFirstRowCol.Location = new System.Drawing.Point(12, 22);
            this.chkFirstRowCol.Name = "chkFirstRowCol";
            this.chkFirstRowCol.Size = new System.Drawing.Size(290, 17);
            this.chkFirstRowCol.TabIndex = 5;
            this.chkFirstRowCol.Text = "Ignora la prima riga contenente le intestazioni di colonna";
            this.chkFirstRowCol.UseVisualStyleBackColor = true;
            // 
            // frmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(605, 180);
            this.Controls.Add(this.chkFirstRowCol);
            this.Controls.Add(this.btnOk);
            this.Controls.Add(this.txtDestionationFile);
            this.Controls.Add(this.btnDestination);
            this.Controls.Add(this.txtSourceFile);
            this.Controls.Add(this.btnSource);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
            this.Name = "frmMain";
            this.ShowIcon = false;
            this.Text = "csv TO json";
            this.Load += new System.EventHandler(this.frmMain_Load);
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Button btnSource;
        private System.Windows.Forms.TextBox txtSourceFile;
        private System.Windows.Forms.TextBox txtDestionationFile;
        private System.Windows.Forms.Button btnDestination;
        private System.Windows.Forms.Button btnOk;
        private System.Windows.Forms.CheckBox chkFirstRowCol;
    }
}

Commits for Nextrek/csvTojSon/csvTojSon/frmMain.Designer.cs

Diff revisions: vs.
Revision Author Commited Message
105 Diff Diff DTocci picture DTocci Fri 01 Aug, 2014 15:55:56 +0000
92 DTocci picture DTocci Fri 18 Jul, 2014 17:04:14 +0000