benq
06-11-2006, 11:37 AM
hello all
i,m trying to decipher this can some explain this to me in psuedocode or an explantion on what this does.
its simple but i cant put it in plain english or pseudocode
while (objRdr.Read())
{
txtName.Text = (string)objRdr["ItemName"];
txtImage.Text = (string)objRdr["ImageURL"];
txtQuantity.Text = (string)objRdr["Quantity"];
txtCost.Text = (string)objRdr["Cost"];
}
objRdr.Close();
objConn.Close();
recordupdate_btn.Enabled = true;
}
any help is greatly appreciated
thanks
i,m trying to decipher this can some explain this to me in psuedocode or an explantion on what this does.
its simple but i cant put it in plain english or pseudocode
while (objRdr.Read())
{
txtName.Text = (string)objRdr["ItemName"];
txtImage.Text = (string)objRdr["ImageURL"];
txtQuantity.Text = (string)objRdr["Quantity"];
txtCost.Text = (string)objRdr["Cost"];
}
objRdr.Close();
objConn.Close();
recordupdate_btn.Enabled = true;
}
any help is greatly appreciated
thanks