Das ist wieder nur angstmache von Microsoft selbst. Den Key kannst du ohne Probleme mehrmals verwenden.

...zur Antwort

Da reicht eigentlich locker 550 Watt Netzteil von beQuiet

...zur Antwort
C# zweite Form Taschenrechner funktioniert nicht?

Hallo,

ich bin hier echt am verzweifeln mein Rechner auf der Form funktioniert nicht. Mir werden keine Zahlen angezeigt. Könnt ihr mir weiterhelfen?

public partial class TSRechner : Form { public TSRechner() { InitializeComponent(); } private void TSRechner_Load(object sender, EventArgs e) { zahl1.Text = ""; zahl2.Text = ""; zahl3.Text = ""; operand.Text = ""; } private void b_0_Click(object sender, EventArgs e) { if (operand.Text == "") { zahl1.Text = zahl1.Text + "0"; } else { zahl2.Text = zahl2.Text + "0"; } }

    private void b_1_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "1";
        }
        else
        {
            zahl2.Text = zahl2.Text + "1";
        }
    }

    private void b_2_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "2";
        }
        else
        {
            zahl2.Text = zahl2.Text + "2";
        }
    }

    private void b_3_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "3";
        }
        else
        {
            zahl2.Text = zahl2.Text + "3";
        }
    }

    private void b_4_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "4";
        }
        else
        {
            zahl2.Text = zahl2.Text + "4";
        }
    }

    private void b_5_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "5";
        }
        else
        {
            zahl2.Text = zahl2.Text + "5";
        }
    }

    private void b_6_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "6";
        }
        else
        {
            zahl2.Text = zahl2.Text + "6";
        }
    }

    private void b_7_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "7";
        }
        else
        {
            zahl2.Text = zahl2.Text + "7";
        }
    }

    private void b_8_Click(object sender, EventArgs e)
    {
        if (operand.Text == "")
        {
            zahl1.Text = zahl1.Text + "8";
        }
        else
        {
            zahl2.Text = zahl2.Text + "8";
...zum Beitrag

falls ihr es nochmal ordentlich sehen wollt: http://www.mediafire.com/view/0cuspf7e9ppi78g/Form_2.txt

...zur Antwort