Subversion Repositories Code-Repo

Compare Revisions

Ignore whitespace Rev 8 → Rev 9

/SWAT Office App/trunk/SWAT Office App/Settings_Verify_Form.cs
0,0 → 1,36
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
 
namespace SWAT_Office_App
{
public partial class SettingsVerify_Form : Form
{
public SettingsVerify_Form()
{
InitializeComponent();
this.txt_Password.Focus();
 
// Monitors the text in each textbox, triggering changes when certain criteria is met
this.txt_Password.TextChanged += new EventHandler(this.txt_Password_TextChanged);
}
private void txt_Password_TextChanged(object sender, EventArgs e)
{
TextBox tb = (TextBox)sender;
if (tb.Text == "tr33b3@rd")
{
Settings_Form.settings_Form_Instance.ShowDialog();
this.Close();
}
}
private void btn_Cancel_Click(object sender, EventArgs e)
{
this.Close();
}
}
}