You need to have a way of determining whether there's already been a raise or not.
Suppose you include this private field in the form:
private bool hasRaised = false;
You could then code the raiseButton Click eventhandler as follows:
private raiseButton_Click(object sender, EventArgs e)
{
if (!hasRaised)
{
if (anteLabel.Text == "") return; // no ante chosen yet
raiseLabel.Text = anteLabel.Text;
hasRaised = true;
}
else
{
raise2Label.Text = anteLabel.Text;
hasRaised = false; // ready for next deal
}
}
When I said last night that I was packing up, I meant I was getting ready for bed :)