Click here to Skip to main content
15,891,951 members
Articles / Desktop Programming / Windows Forms

Encryption and Decryption

Rate me:
Please Sign up or sign in to vote.
3.36/5 (7 votes)
24 Mar 2009CPOL 24.7K   846   10  
Its the software who can make the Ceasares Code
namespace CESAR1
{
    partial class Opcionet1
    {
        /// <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.txtAlfCesari = new System.Windows.Forms.TextBox();
            this.txtAlfabeti = new System.Windows.Forms.TextBox();
            this.txtCelesiOpcionet = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            // 
            // txtAlfCesari
            // 
            this.txtAlfCesari.Location = new System.Drawing.Point(11, 107);
            this.txtAlfCesari.Name = "txtAlfCesari";
            this.txtAlfCesari.ReadOnly = true;
            this.txtAlfCesari.Size = new System.Drawing.Size(272, 20);
            this.txtAlfCesari.TabIndex = 7;
            // 
            // txtAlfabeti
            // 
            this.txtAlfabeti.Location = new System.Drawing.Point(11, 63);
            this.txtAlfabeti.Name = "txtAlfabeti";
            this.txtAlfabeti.ReadOnly = true;
            this.txtAlfabeti.Size = new System.Drawing.Size(272, 20);
            this.txtAlfabeti.TabIndex = 6;
            this.txtAlfabeti.Text = "A B C D E F G H I J K L M N O P Q R S T U V W X Y Z";
            // 
            // txtCelesiOpcionet
            // 
            this.txtCelesiOpcionet.Location = new System.Drawing.Point(115, 26);
            this.txtCelesiOpcionet.Name = "txtCelesiOpcionet";
            this.txtCelesiOpcionet.ReadOnly = true;
            this.txtCelesiOpcionet.Size = new System.Drawing.Size(51, 20);
            this.txtCelesiOpcionet.TabIndex = 5;
            // 
            // Opcionet1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(292, 155);
            this.Controls.Add(this.txtAlfCesari);
            this.Controls.Add(this.txtAlfabeti);
            this.Controls.Add(this.txtCelesiOpcionet);
            this.Name = "Opcionet1";
            this.Text = "Opcionet1";
            this.ResumeLayout(false);
            this.PerformLayout();

        }

        #endregion

        private System.Windows.Forms.TextBox txtAlfCesari;
        private System.Windows.Forms.TextBox txtAlfabeti;
        public System.Windows.Forms.TextBox txtCelesiOpcionet;
    }
}

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
Team Leader
Albania Albania
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions