Click here to Skip to main content
15,896,154 members
Articles / Programming Languages / C#

XmlStore Part 2: Printing DataGridView Contents

Rate me:
Please Sign up or sign in to vote.
4.71/5 (7 votes)
18 Mar 2007CPOL7 min read 70K   3.4K   51  
A utility to read, edit, encrypt, decrypt, write and print XmlStore files
namespace XmlStoreClient
{
    partial class Form_Password
    {
        /// <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.ctlPasswordTBX = new System.Windows.Forms.TextBox();
            this.ctlPasswordLBL = new System.Windows.Forms.Label();
            this.ctlApplyBTN = new System.Windows.Forms.Button();
            this.ctlCancelBTN = new System.Windows.Forms.Button();
            this.SuspendLayout();
            // 
            // ctlPasswordTBX
            // 
            this.ctlPasswordTBX.Location = new System.Drawing.Point(16, 38);
            this.ctlPasswordTBX.Name = "ctlPasswordTBX";
            this.ctlPasswordTBX.PasswordChar = '*';
            this.ctlPasswordTBX.Size = new System.Drawing.Size(190, 20);
            this.ctlPasswordTBX.TabIndex = 0;
            // 
            // ctlPasswordLBL
            // 
            this.ctlPasswordLBL.AutoSize = true;
            this.ctlPasswordLBL.Location = new System.Drawing.Point(13, 12);
            this.ctlPasswordLBL.Name = "ctlPasswordLBL";
            this.ctlPasswordLBL.Size = new System.Drawing.Size(193, 13);
            this.ctlPasswordLBL.TabIndex = 1;
            this.ctlPasswordLBL.Text = "Password for encryption and decryption";
            // 
            // ctlApplyBTN
            // 
            this.ctlApplyBTN.Location = new System.Drawing.Point(16, 80);
            this.ctlApplyBTN.Name = "ctlApplyBTN";
            this.ctlApplyBTN.Size = new System.Drawing.Size(75, 23);
            this.ctlApplyBTN.TabIndex = 2;
            this.ctlApplyBTN.Text = "Apply";
            this.ctlApplyBTN.UseVisualStyleBackColor = true;
            this.ctlApplyBTN.Click += new System.EventHandler(this.ctlApplyBTN_Click);
            // 
            // ctlCancelBTN
            // 
            this.ctlCancelBTN.Location = new System.Drawing.Point(131, 80);
            this.ctlCancelBTN.Name = "ctlCancelBTN";
            this.ctlCancelBTN.Size = new System.Drawing.Size(75, 23);
            this.ctlCancelBTN.TabIndex = 3;
            this.ctlCancelBTN.Text = "Cancel";
            this.ctlCancelBTN.UseVisualStyleBackColor = true;
            this.ctlCancelBTN.Click += new System.EventHandler(this.ctlCancelBTN_Click);
            // 
            // Form_Password
            // 
            this.AcceptButton = this.ctlApplyBTN;
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.CancelButton = this.ctlCancelBTN;
            this.ClientSize = new System.Drawing.Size(219, 115);
            this.Controls.Add(this.ctlCancelBTN);
            this.Controls.Add(this.ctlApplyBTN);
            this.Controls.Add(this.ctlPasswordLBL);
            this.Controls.Add(this.ctlPasswordTBX);
            this.Name = "Form_Password";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
            this.Text = "Form_Password";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox ctlPasswordTBX;
        private System.Windows.Forms.Label ctlPasswordLBL;
        private System.Windows.Forms.Button ctlApplyBTN;
        private System.Windows.Forms.Button ctlCancelBTN;
    }
}

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
Software Developer
United States United States
An old dog trying to learn new tricks!

Comments and Discussions