Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My code:

public void FillMaxBankCode()
{
    try
    {
        DataSet ds = new DataSet();
        ds = bol.SelectMaxBankCode();
        string j = ds.Tables[0].Rows[0].ToString();
        txtbankid.Text = int.Parse(j); //ERROR HERE
    }
    catch (Exception ex)
    {
        MessageBox.Show(ex.Message);
    }
}



  public DataSet SelectMaxBankCode()
    {
        try
        {
            **Squery = "EXEC SelectMaxBankCode";**
            return dal.DBread(Squery);
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

I am new to C# and the above code show error.. can anyone help?

share|improve this question
not a c# expert, but it seems to me you are converting a string to int, when in fact you need a string value in the first place? – Maggie Aug 8 '11 at 13:15
i want to show bank id in the text box..what can i do.. – Guru G Aug 8 '11 at 13:25

4 Answers

up vote 5 down vote accepted

txtbankid.Text property type is a string. Don't use int.parse. There is no need to. Just do: txtbankid.Text = j;

share|improve this answer
Better than that.. no need for additional variable, just have txtbankid.Text = ds.Tables[0].Rows[0].ToString(); – Shadow Wizard Aug 8 '11 at 13:14
with out int.parse ,also i got error.. – Guru G Aug 8 '11 at 13:14
ds.Tables[0].Rows[0].ToString(); Is not very nice anyway. You should check for NULLs and remove the try catch – peer Aug 8 '11 at 13:15
@Guru: Post your new code. – 0A0D Aug 8 '11 at 13:16
if iam putting like this txtbankid.Text = j; im not getting number,it shows system.draw...... – Guru G Aug 8 '11 at 13:17
show 7 more comments
public void FillMaxBankCode()
        {
            try
            {
                DataSet ds = new DataSet();
                ds = bol.SelectMaxBankCode();
                string j = ds.Tables[0].Rows[0].ToString();
                txtbankid.Text = j;
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
        }
share|improve this answer
if iam putting like this txtbankid.Text = j; im not getting number,it shows system.draw..... – Guru G Aug 8 '11 at 13:18
@Gugu: Post all code and error messages that are relevant to this discussion. Thanks – 0A0D Aug 8 '11 at 13:46

int.Parse(..) is for converting a string containing digits into an integer. You are trying to perform the function int.Parse(..) on a string but then assign it to another string. That won't work because int.Parse(..) returns and integer. Read here about Int32.Parse (String) method.

share|improve this answer

If you want to ensure that the value is an integer before assigning it I suggest you use TryParse

// check if the table and row exists
if (ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0)
{
    string j = ds.Tables[0].Rows[0].ToString();
    int value = 0;
    if (int.TryParse(j, out value))
        txtbankid.Text = value.ToString();
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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