Example #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            Kopierkarte copycard = new Kopierkarte();

            copycard.setKopien(Convert.ToInt32(textBox1.Text));
            copycard.PinNr = Convert.ToInt32(textBox2.Text);
            this.Visible   = false;
            new Form2(ref copycard).ShowDialog();
            this.Close();
        }
Example #2
0
 public Form3(ref Kopierkarte cc)
 {
     copycard = cc;
     InitializeComponent();
 }
Example #3
0
 public Form2(ref Kopierkarte cc)
 {
     InitializeComponent();
     copycard = cc;
 }