vote up 1 vote down star

Hi, I want to call a variable from another event, for example

     public void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
    {

        var ccc = lblTicketsA;
    }

 public void btnSubmit_Click(object sender, EventArgs e)
    {
        try
        {
             ccc.text = "test";


        }

        catch (Exception ex)
        {
            lblDisplay.Text = ex.Message;
        }
    }

thank you

flag

71% accept rate
You cannot 'call' a variable*. To succeed at, and develop skills in, you have to learn to be very specific about your wording. Many people will laugh this question off without trying further to understand it through your example. You 'access' a variable. * I know you can 'call' an accessor, but that's another day's nit-picking. – ProfK Sep 20 at 12:20

1 Answer

vote up 3 vote down check

Make ccc an instance field like this:

private SomeType ccc;

public void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
{
    this.ccc = lblTicketsA;
}

public void btnSubmit_Click(object sender, EventArgs e)
{
    try
    {
    	this.ccc.text = "test"
    }
    catch (Exception ex)
    {
    	lblDisplay.Text = ex.Message;
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.