1
Sorry don't understand your question proper.
you want discount percentage in text box from where form datagridview column or other.
0
Dear Yesubabu,
If you want to show value in grid view then you need to do below code.
foreach (DataGridViewRow row in dataGridView1.Rows)
{
int n = row.Index;
dataGridView1.Rows[n].Cells[6].Value =
Double.Parse(dataGridView1.Rows[n].Cells[4].Value.ToString()) /
Double.Parse(dataGridView1.Rows[n].Cells[5].Value.ToString());
}
and if you want to show value in Text Box so need to do below code.
double issue = 0;
int storedays = Convert.ToInt32(Total_StoreDays_txt.Text);
if (double.TryParse(Total_issue_txt.Text, out issue))
{
remainingvalue.Text = (TotalValue / Percentage).ToString();
}
0
You want to change it in database or temporary basis in the grid only
0
sir
rowdatabound event where is locatedin gridview property foe windows application
i did not get that after all events searched belongs gird
0
You will need to update that in database, the amount column value should get updated and then bind the grid
0
Sir
I Have a form containing textbox(Percentage),
gridview for Displaying result gridview has Total amount column
Ex:
total amount / percentage = remaining value
it will show in gridview when i give some value automatically remaining value change then display in my gridview