From e85f0984bac7611f216bbc406713e8fd86312e33 Mon Sep 17 00:00:00 2001
From:
Date: Thu, 1 Jan 1970 00:00:00 +0000
Subject: text -> HTML
---
text2html/txt_to_html/frm_main.Designer.cs | 88 ++++++++++++++++++++++++++++++
1 file changed, 88 insertions(+)
create mode 100644 text2html/txt_to_html/frm_main.Designer.cs
(limited to 'text2html/txt_to_html/frm_main.Designer.cs')
diff --git a/text2html/txt_to_html/frm_main.Designer.cs b/text2html/txt_to_html/frm_main.Designer.cs
new file mode 100644
index 0000000..79bc536
--- /dev/null
+++ b/text2html/txt_to_html/frm_main.Designer.cs
@@ -0,0 +1,88 @@
+namespace txt_to_html
+{
+ partial class frm_main
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null)) {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ lbl_help = new System.Windows.Forms.Label();
+ btn_convert = new System.Windows.Forms.Button();
+ btn_exit = new System.Windows.Forms.Button();
+ SuspendLayout();
+ //
+ // lbl_help
+ //
+ lbl_help.AutoSize = true;
+ lbl_help.Location = new System.Drawing.Point(43, 49);
+ lbl_help.Name = "lbl_help";
+ lbl_help.Size = new System.Drawing.Size(204, 15);
+ lbl_help.TabIndex = 0;
+ lbl_help.Text = "Upload a .txt file to convert it to html.";
+ //
+ // btn_convert
+ //
+ btn_convert.ForeColor = System.Drawing.Color.Green;
+ btn_convert.Location = new System.Drawing.Point(78, 79);
+ btn_convert.Name = "btn_convert";
+ btn_convert.Size = new System.Drawing.Size(129, 32);
+ btn_convert.TabIndex = 1;
+ btn_convert.Text = "Upload and Convert";
+ btn_convert.UseVisualStyleBackColor = true;
+ btn_convert.Click += btn_convert_Click;
+ //
+ // btn_exit
+ //
+ btn_exit.ForeColor = System.Drawing.Color.Maroon;
+ btn_exit.Location = new System.Drawing.Point(101, 117);
+ btn_exit.Name = "btn_exit";
+ btn_exit.Size = new System.Drawing.Size(75, 32);
+ btn_exit.TabIndex = 2;
+ btn_exit.Text = "Exit";
+ btn_exit.UseVisualStyleBackColor = true;
+ btn_exit.Click += btn_exit_Click;
+ //
+ // frm_main
+ //
+ AcceptButton = btn_convert;
+ AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
+ AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ CancelButton = btn_exit;
+ ClientSize = new System.Drawing.Size(284, 201);
+ Controls.Add(btn_exit);
+ Controls.Add(btn_convert);
+ Controls.Add(lbl_help);
+ Name = "frm_main";
+ Text = "Text to html";
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label lbl_help;
+ private System.Windows.Forms.Button btn_convert;
+ private System.Windows.Forms.Button btn_exit;
+ }
+}
--
cgit 1.4.1