Click here to Skip to main content
15,886,016 members
Articles / Desktop Programming / Windows Forms

Easily Create Your Own Parser

Rate me:
Please Sign up or sign in to vote.
4.81/5 (56 votes)
9 Jul 2011CPOL7 min read 183.5K   9.5K   160  
Create a hand made parser in VB.NET or C# easily and fast
namespace TokenIcer
{
    partial class AboutForm
    {
        /// <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()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutForm));
            this.pictureBox1 = new System.Windows.Forms.PictureBox();
            this.pbCloseButton = new System.Windows.Forms.PictureBox();
            this.pictureBox2 = new System.Windows.Forms.PictureBox();
            this.label1 = new System.Windows.Forms.Label();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbCloseButton)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
            this.SuspendLayout();
            // 
            // pictureBox1
            // 
            this.pictureBox1.Image = global::TokenIcer.Properties.Resources.Coin;
            this.pictureBox1.InitialImage = global::TokenIcer.Properties.Resources.Coin;
            this.pictureBox1.Location = new System.Drawing.Point(27, 33);
            this.pictureBox1.Name = "pictureBox1";
            this.pictureBox1.Size = new System.Drawing.Size(128, 128);
            this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox1.TabIndex = 0;
            this.pictureBox1.TabStop = false;
            // 
            // pbCloseButton
            // 
            this.pbCloseButton.ErrorImage = global::TokenIcer.Properties.Resources.TokenIcerLogo;
            this.pbCloseButton.Location = new System.Drawing.Point(756, 7);
            this.pbCloseButton.Name = "pbCloseButton";
            this.pbCloseButton.Size = new System.Drawing.Size(26, 14);
            this.pbCloseButton.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pbCloseButton.TabIndex = 1;
            this.pbCloseButton.TabStop = false;
            this.pbCloseButton.Click += new System.EventHandler(this.PbCloseButtonClick);
            this.pbCloseButton.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PbCloseButtonMouseDown);
            this.pbCloseButton.MouseEnter += new System.EventHandler(this.PbCloseButtonMouseEnter);
            this.pbCloseButton.MouseLeave += new System.EventHandler(this.PbCloseButtonMouseLeave);
            this.pbCloseButton.MouseUp += new System.Windows.Forms.MouseEventHandler(this.PbCloseButtonMouseUp);
            // 
            // pictureBox2
            // 
            this.pictureBox2.Image = global::TokenIcer.Properties.Resources.TokenIcerLogo;
            this.pictureBox2.InitialImage = global::TokenIcer.Properties.Resources.TokenIcerLogo;
            this.pictureBox2.Location = new System.Drawing.Point(156, 8);
            this.pictureBox2.Name = "pictureBox2";
            this.pictureBox2.Size = new System.Drawing.Size(600, 200);
            this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
            this.pictureBox2.TabIndex = 2;
            this.pictureBox2.TabStop = false;
            // 
            // label1
            // 
            this.label1.AutoSize = true;
            this.label1.Font = new System.Drawing.Font("Verdana", 22F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.label1.ForeColor = System.Drawing.Color.White;
            this.label1.Location = new System.Drawing.Point(205, 224);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(368, 36);
            this.label1.TabIndex = 3;
            this.label1.Text = "(C) 2011 Alan L. Bryan";
            // 
            // AboutForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.BackColor = System.Drawing.Color.DimGray;
            this.ClientSize = new System.Drawing.Size(791, 300);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.pictureBox2);
            this.Controls.Add(this.pbCloseButton);
            this.Controls.Add(this.pictureBox1);
            this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
            this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
            this.MaximizeBox = false;
            this.MinimizeBox = false;
            this.Name = "AboutForm";
            this.ShowInTaskbar = false;
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text = "About TokenIcer";
            this.Load += new System.EventHandler(this.AboutFormLoad);
            this.Paint += new System.Windows.Forms.PaintEventHandler(this.AboutFormPaint);
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pbCloseButton)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.PictureBox pictureBox1;
        private System.Windows.Forms.PictureBox pbCloseButton;
        private System.Windows.Forms.PictureBox pictureBox2;
        private System.Windows.Forms.Label label1;
    }
}

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer http://www.icemanind.com
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions