Click here to Skip to main content
15,883,901 members
Articles / Programming Languages / C#

P-Wallet - Personal Encrypted Wallet for Passwords and Texts

Rate me:
Please Sign up or sign in to vote.
4.41/5 (6 votes)
15 Nov 2006CPOL3 min read 31.1K   740   22  
A utility application for keeping passwords in a single encrypted file
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Atlantis {

    public partial class TextEditForm: Form {

        public TextEditForm() {
            InitializeComponent();
        }

        public string Value {
            get {
                return ValueTextBox.Text;
            }
            set {
                ValueTextBox.Text = value == null ? "" : value;
                AdjustRemaining();
            }
        }


        private void ValueTextBox_TextChanged(object sender, EventArgs e) {
            AdjustRemaining();
        }

        void AdjustRemaining() {
            int c = ValueTextBox.MaxLength;
            int r = c - ValueTextBox.Text.Length;
            RemainingCharsLabel.Text = string.Format("Remaining capacity {0} out of {1}", r, c);
        }                
    }
}

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

Comments and Discussions