Problem in assigning values to ItemArray...
-
Problem in assigning values to ItemArray... I am assigning a new value (100) to the existing cell... But the original value remains unaltered... Here is the code: ds.Tables[0].Rows[0].BeginEdit(); ds.Tables[0].Rows[0].ItemArray[0] = 100; ds.Tables[0].Rows[0].EndEdit(); Please help me. Thank You. Arun Kumar.A
-
Problem in assigning values to ItemArray... I am assigning a new value (100) to the existing cell... But the original value remains unaltered... Here is the code: ds.Tables[0].Rows[0].BeginEdit(); ds.Tables[0].Rows[0].ItemArray[0] = 100; ds.Tables[0].Rows[0].EndEdit(); Please help me. Thank You. Arun Kumar.A
Hi, Try this. ds.Tables[0].Rows[0].BeginEdit(); ds.Tables[0].Rows[0][0] = 100; ds.Tables[0].Rows[0].EndEdit(); I hope this will help you.
Thanks and Regards, Chetan Ranpariya
-
Hi, Try this. ds.Tables[0].Rows[0].BeginEdit(); ds.Tables[0].Rows[0][0] = 100; ds.Tables[0].Rows[0].EndEdit(); I hope this will help you.
Thanks and Regards, Chetan Ranpariya
Hi, Thank U for Ur reply. I will try this out. Regards, Arun Kumar.A