Subversion Repositories Code-Repo

Rev

Rev 9 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9 Rev 45
Line 14... Line 14...
14
        private List<string> selectedUsers = new List<string>();
14
        private List<string> selectedUsers = new List<string>();
15
        public DeleteUserVerify_Form(List<string> users)
15
        public DeleteUserVerify_Form(List<string> users)
16
        {
16
        {
17
            selectedUsers = users;
17
            selectedUsers = users;
18
            InitializeComponent();
18
            InitializeComponent();
19
            //MessageBox.Show("Warning! Verify that all shares are closed before deleting account!", "Warning!");
-
 
20
            this.txt_Password.Focus();
19
            this.txt_Password.Focus();
21
 
20
 
22
            // Monitors the text in each textbox, triggering changes when certain criteria is met
21
            // Monitors the text in each textbox, triggering changes when certain criteria is met
23
            this.txt_Password.TextChanged += new EventHandler(this.txt_Password_TextChanged);
22
            this.txt_Password.TextChanged += new EventHandler(this.txt_Password_TextChanged);
24
        }
23
        }