3
Answers

Dynamic calculations in RadDataGrid

usha

usha

12y
1.2k
1
I have 2 radDatagrid in the name of itemGrid and GridView.  Respective columns in itemGrid "Sno", "Item", "Rate", "Qty", "Amount", "Delete" & GridView columns are "Sno","Customer Name","Item","Rate","Qty","Amount". Rate * Qty displayed on Amount Column. My question s whenever i add or deduct values the transaction made need to be reflect on the itemGrid. How can that be. Can any1 help. I need it ASAP ...  
Answers (3)
0
Vulpes
NA 98.3k 1.5m 11y
Try this code:

private void Form1_KeyDown(object sender, KeyEventArgs e)
{
   pressed = true;
   label1.Text = "Key Pressed: " + e.KeyCode;
   timer1.Stop();
   timer1_Tick(timer1, EventArgs.Empty);
   timer1.Start();
}