I want to be able to display balance to label and my code is not working. This is code I got so far:
SqlDataReader readdata;
{
sqlCommandbalance.Connection.Open();
sqlCommandbalance.Parameters["@accountID"].Value = show.accoundID;
readdata = sqlCommandbalance.ExecuteReader();
string balanceDB = null;
while (readdata.Read())
{
balanceDB = readdata["balance"].ToString();
}
sqlCommandbalance.Connection.Close();
balanceShow.Text += " " + balanceDB.ToString();
}
On this line - balanceShow.Text += " " + balanceDB.ToString(); got a error saying Object reference not set to an instance of an object.
balanceShowis a label object on your user interface? The error is indicating that object has not been initialized. If you set a breakpoint on that line is this true? Are you creating the label at runtime? – Brad Mar 7 '12 at 19:58balanceDBis initialized to null, no. But if thebalanceShowcontrol was null, it might matter. – jrummell Mar 7 '12 at 20:01