Click here to Skip to main content
15,895,667 members
Articles / Programming Languages / C#

HTML Meta Tag Generator

Rate me:
Please Sign up or sign in to vote.
1.82/5 (9 votes)
15 Jan 20071 min read 27.9K   218   14  
Visual HTML Meta Tag Generator
namespace MetaTagGenerator
{
    partial class frmMainForm
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.panel1 = new System.Windows.Forms.Panel();
            this.txtTitle = new System.Windows.Forms.TextBox();
            this.label1 = new System.Windows.Forms.Label();
            this.panel2 = new System.Windows.Forms.Panel();
            this.txtDesc = new System.Windows.Forms.TextBox();
            this.label2 = new System.Windows.Forms.Label();
            this.panel3 = new System.Windows.Forms.Panel();
            this.txtKeys = new System.Windows.Forms.TextBox();
            this.label3 = new System.Windows.Forms.Label();
            this.panel4 = new System.Windows.Forms.Panel();
            this.txtAuthor = new System.Windows.Forms.TextBox();
            this.label4 = new System.Windows.Forms.Label();
            this.panel5 = new System.Windows.Forms.Panel();
            this.cboDistribution = new System.Windows.Forms.ComboBox();
            this.label5 = new System.Windows.Forms.Label();
            this.panel6 = new System.Windows.Forms.Panel();
            this.txtRevisit = new System.Windows.Forms.TextBox();
            this.label6 = new System.Windows.Forms.Label();
            this.btnGenerate = new System.Windows.Forms.Button();
            this.txtMetaTagsResult = new System.Windows.Forms.TextBox();
            this.btnCopyToClipboard = new System.Windows.Forms.Button();
            this.btnAbout = new System.Windows.Forms.Button();
            this.lblAdvice = new System.Windows.Forms.Label();
            this.panel1.SuspendLayout();
            this.panel2.SuspendLayout();
            this.panel3.SuspendLayout();
            this.panel4.SuspendLayout();
            this.panel5.SuspendLayout();
            this.panel6.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.BackColor = System.Drawing.Color.Azure;
            this.panel1.Controls.Add(this.txtTitle);
            this.panel1.Controls.Add(this.label1);
            this.panel1.Location = new System.Drawing.Point(9, 12);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(539, 25);
            this.panel1.TabIndex = 1;
            // 
            // txtTitle
            // 
            this.txtTitle.Location = new System.Drawing.Point(70, 2);
            this.txtTitle.MaxLength = 250;
            this.txtTitle.Name = "txtTitle";
            this.txtTitle.Size = new System.Drawing.Size(466, 20);
            this.txtTitle.TabIndex = 0;
            this.txtTitle.Tag = "aaaa";
            this.txtTitle.Enter += new System.EventHandler(this.ChangeColorEnter);
            this.txtTitle.Leave += new System.EventHandler(this.ChangeColorExit);
            this.txtTitle.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SelectAllText);
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(3, 6);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(30, 13);
            this.label1.TabIndex = 1;
            this.label1.Text = "Title:";
            // 
            // panel2
            // 
            this.panel2.BackColor = System.Drawing.Color.White;
            this.panel2.Controls.Add(this.txtDesc);
            this.panel2.Controls.Add(this.label2);
            this.panel2.Location = new System.Drawing.Point(9, 38);
            this.panel2.Name = "panel2";
            this.panel2.Size = new System.Drawing.Size(539, 25);
            this.panel2.TabIndex = 2;
            // 
            // txtDesc
            // 
            this.txtDesc.Location = new System.Drawing.Point(70, 2);
            this.txtDesc.MaxLength = 250;
            this.txtDesc.Name = "txtDesc";
            this.txtDesc.Size = new System.Drawing.Size(466, 20);
            this.txtDesc.TabIndex = 1;
            this.txtDesc.Enter += new System.EventHandler(this.ChangeColorEnter);
            this.txtDesc.Leave += new System.EventHandler(this.ChangeColorExit);
            this.txtDesc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SelectAllText);
            // 
            // label2
            // 
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(3, 6);
            this.label2.Name = "label2";
            this.label2.Size = new System.Drawing.Size(35, 13);
            this.label2.TabIndex = 1;
            this.label2.Text = "Desc:";
            // 
            // panel3
            // 
            this.panel3.BackColor = System.Drawing.Color.Azure;
            this.panel3.Controls.Add(this.txtKeys);
            this.panel3.Controls.Add(this.label3);
            this.panel3.Location = new System.Drawing.Point(9, 64);
            this.panel3.Name = "panel3";
            this.panel3.Size = new System.Drawing.Size(539, 25);
            this.panel3.TabIndex = 3;
            // 
            // txtKeys
            // 
            this.txtKeys.Location = new System.Drawing.Point(70, 2);
            this.txtKeys.MaxLength = 250;
            this.txtKeys.Name = "txtKeys";
            this.txtKeys.Size = new System.Drawing.Size(466, 20);
            this.txtKeys.TabIndex = 1;
            this.txtKeys.Enter += new System.EventHandler(this.ChangeColorEnter);
            this.txtKeys.Leave += new System.EventHandler(this.ChangeColorExit);
            this.txtKeys.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SelectAllText);
            // 
            // label3
            // 
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(3, 6);
            this.label3.Name = "label3";
            this.label3.Size = new System.Drawing.Size(56, 13);
            this.label3.TabIndex = 1;
            this.label3.Text = "Keywords:";
            // 
            // panel4
            // 
            this.panel4.BackColor = System.Drawing.Color.White;
            this.panel4.Controls.Add(this.txtAuthor);
            this.panel4.Controls.Add(this.label4);
            this.panel4.Location = new System.Drawing.Point(9, 90);
            this.panel4.Name = "panel4";
            this.panel4.Size = new System.Drawing.Size(539, 25);
            this.panel4.TabIndex = 4;
            // 
            // txtAuthor
            // 
            this.txtAuthor.Location = new System.Drawing.Point(70, 2);
            this.txtAuthor.MaxLength = 70;
            this.txtAuthor.Name = "txtAuthor";
            this.txtAuthor.Size = new System.Drawing.Size(466, 20);
            this.txtAuthor.TabIndex = 1;
            this.txtAuthor.Enter += new System.EventHandler(this.ChangeColorEnter);
            this.txtAuthor.Leave += new System.EventHandler(this.ChangeColorExit);
            this.txtAuthor.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SelectAllText);
            // 
            // label4
            // 
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(3, 6);
            this.label4.Name = "label4";
            this.label4.Size = new System.Drawing.Size(41, 13);
            this.label4.TabIndex = 1;
            this.label4.Text = "Author:";
            // 
            // panel5
            // 
            this.panel5.BackColor = System.Drawing.Color.Azure;
            this.panel5.Controls.Add(this.cboDistribution);
            this.panel5.Controls.Add(this.label5);
            this.panel5.Location = new System.Drawing.Point(9, 116);
            this.panel5.Name = "panel5";
            this.panel5.Size = new System.Drawing.Size(539, 25);
            this.panel5.TabIndex = 5;
            // 
            // cboDistribution
            // 
            this.cboDistribution.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboDistribution.FormattingEnabled = true;
            this.cboDistribution.Items.AddRange(new object[] {
            "Global",
            "Local",
            "Internal Use"});
            this.cboDistribution.Location = new System.Drawing.Point(70, 2);
            this.cboDistribution.Name = "cboDistribution";
            this.cboDistribution.Size = new System.Drawing.Size(121, 21);
            this.cboDistribution.TabIndex = 1;
            this.cboDistribution.Leave += new System.EventHandler(this.ChangeColorExit);
            this.cboDistribution.Enter += new System.EventHandler(this.ChangeColorEnter);
            // 
            // label5
            // 
            this.label5.AutoSize = true;
            this.label5.Location = new System.Drawing.Point(3, 6);
            this.label5.Name = "label5";
            this.label5.Size = new System.Drawing.Size(62, 13);
            this.label5.TabIndex = 1;
            this.label5.Text = "Distribution:";
            // 
            // panel6
            // 
            this.panel6.BackColor = System.Drawing.Color.White;
            this.panel6.Controls.Add(this.txtRevisit);
            this.panel6.Controls.Add(this.label6);
            this.panel6.Location = new System.Drawing.Point(9, 142);
            this.panel6.Name = "panel6";
            this.panel6.Size = new System.Drawing.Size(191, 25);
            this.panel6.TabIndex = 6;
            // 
            // txtRevisit
            // 
            this.txtRevisit.Location = new System.Drawing.Point(70, 2);
            this.txtRevisit.MaxLength = 3;
            this.txtRevisit.Name = "txtRevisit";
            this.txtRevisit.Size = new System.Drawing.Size(72, 20);
            this.txtRevisit.TabIndex = 1;
            this.txtRevisit.Enter += new System.EventHandler(this.ChangeColorEnter);
            this.txtRevisit.Leave += new System.EventHandler(this.ChangeColorExit);
            this.txtRevisit.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SelectAllText);
            // 
            // label6
            // 
            this.label6.AutoSize = true;
            this.label6.Location = new System.Drawing.Point(3, 6);
            this.label6.Name = "label6";
            this.label6.Size = new System.Drawing.Size(42, 13);
            this.label6.TabIndex = 1;
            this.label6.Text = "Revisit:";
            // 
            // btnGenerate
            // 
            this.btnGenerate.Location = new System.Drawing.Point(206, 142);
            this.btnGenerate.Name = "btnGenerate";
            this.btnGenerate.Size = new System.Drawing.Size(92, 23);
            this.btnGenerate.TabIndex = 7;
            this.btnGenerate.Text = "Generate";
            this.btnGenerate.UseVisualStyleBackColor = true;
            this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
            // 
            // txtMetaTagsResult
            // 
            this.txtMetaTagsResult.BackColor = System.Drawing.SystemColors.ControlLightLight;
            this.txtMetaTagsResult.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
            this.txtMetaTagsResult.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.txtMetaTagsResult.ForeColor = System.Drawing.SystemColors.HotTrack;
            this.txtMetaTagsResult.Location = new System.Drawing.Point(9, 198);
            this.txtMetaTagsResult.Multiline = true;
            this.txtMetaTagsResult.Name = "txtMetaTagsResult";
            this.txtMetaTagsResult.ReadOnly = true;
            this.txtMetaTagsResult.Size = new System.Drawing.Size(539, 125);
            this.txtMetaTagsResult.TabIndex = 10;
            this.txtMetaTagsResult.Enter += new System.EventHandler(this.ChangeColorEnter);
            this.txtMetaTagsResult.Leave += new System.EventHandler(this.ChangeColorExit);
            this.txtMetaTagsResult.TextChanged += new System.EventHandler(this.txtMetaTagsResult_TextChanged);
            this.txtMetaTagsResult.KeyDown += new System.Windows.Forms.KeyEventHandler(this.SelectAllText);
            // 
            // btnCopyToClipboard
            // 
            this.btnCopyToClipboard.Location = new System.Drawing.Point(304, 143);
            this.btnCopyToClipboard.Name = "btnCopyToClipboard";
            this.btnCopyToClipboard.Size = new System.Drawing.Size(92, 23);
            this.btnCopyToClipboard.TabIndex = 8;
            this.btnCopyToClipboard.Text = "Copy Result";
            this.btnCopyToClipboard.UseVisualStyleBackColor = true;
            this.btnCopyToClipboard.Click += new System.EventHandler(this.btnCopyToClipboard_Click);
            // 
            // btnAbout
            // 
            this.btnAbout.Location = new System.Drawing.Point(402, 143);
            this.btnAbout.Name = "btnAbout";
            this.btnAbout.Size = new System.Drawing.Size(92, 23);
            this.btnAbout.TabIndex = 9;
            this.btnAbout.Text = "About Program";
            this.btnAbout.UseVisualStyleBackColor = true;
            this.btnAbout.Click += new System.EventHandler(this.btnAbout_Click);
            // 
            // lblAdvice
            // 
            this.lblAdvice.AutoSize = true;
            this.lblAdvice.Location = new System.Drawing.Point(8, 182);
            this.lblAdvice.Name = "lblAdvice";
            this.lblAdvice.Size = new System.Drawing.Size(314, 13);
            this.lblAdvice.TabIndex = 9;
            this.lblAdvice.Text = "Copy and Paste this inside <head> section of your html document";
            // 
            // frmMainForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(560, 331);
            this.Controls.Add(this.lblAdvice);
            this.Controls.Add(this.txtMetaTagsResult);
            this.Controls.Add(this.btnAbout);
            this.Controls.Add(this.btnCopyToClipboard);
            this.Controls.Add(this.btnGenerate);
            this.Controls.Add(this.panel6);
            this.Controls.Add(this.panel4);
            this.Controls.Add(this.panel2);
            this.Controls.Add(this.panel5);
            this.Controls.Add(this.panel3);
            this.Controls.Add(this.panel1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
            this.MaximizeBox = false;
            this.Name = "frmMainForm";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "MetaTags Generator";
            this.panel1.ResumeLayout(false);
            this.panel1.PerformLayout();
            this.panel2.ResumeLayout(false);
            this.panel2.PerformLayout();
            this.panel3.ResumeLayout(false);
            this.panel3.PerformLayout();
            this.panel4.ResumeLayout(false);
            this.panel4.PerformLayout();
            this.panel5.ResumeLayout(false);
            this.panel5.PerformLayout();
            this.panel6.ResumeLayout(false);
            this.panel6.PerformLayout();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.TextBox txtTitle;
        private System.Windows.Forms.Label label1;
        private System.Windows.Forms.Panel panel2;
        private System.Windows.Forms.TextBox txtDesc;
        private System.Windows.Forms.Label label2;
        private System.Windows.Forms.Panel panel3;
        private System.Windows.Forms.TextBox txtKeys;
        private System.Windows.Forms.Label label3;
        private System.Windows.Forms.Panel panel4;
        private System.Windows.Forms.TextBox txtAuthor;
        private System.Windows.Forms.Label label4;
        private System.Windows.Forms.Panel panel5;
        private System.Windows.Forms.ComboBox cboDistribution;
        private System.Windows.Forms.Label label5;
        private System.Windows.Forms.Panel panel6;
        private System.Windows.Forms.TextBox txtRevisit;
        private System.Windows.Forms.Label label6;
        private System.Windows.Forms.Button btnGenerate;
        private System.Windows.Forms.TextBox txtMetaTagsResult;
        private System.Windows.Forms.Button btnCopyToClipboard;
        private System.Windows.Forms.Button btnAbout;
        private System.Windows.Forms.Label lblAdvice;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Engineer
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions