Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~203 People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for Saranya Asokan

Hi .... I want to add a new rows when cell leave event occurs.It shows error like Operation can not be performed in this event handler... here is my code, If PatientDataGridView.CurrentCell.ColumnIndex = 2 Then PatientDataGridView.Rows.Add() End If

Member Avatar for Member #788418
0
114
Member Avatar for paulablanca

Hi .... try this code......... For i = 0 To TempDataset.Tables(0).Rows.Count - 1 Dim Productvalue As Double = 0 Productvalue = Val(TempDataset.Tables(0).Rows(i)("BillAmount").ToString) * Val(TempDataset.Tables(0).Rows(i)("BillAmount").ToString) PatientDataGridView.Rows.Add(TempDataset.Tables(0).Rows(i)("PatientID").ToString, TempDataset.Tables(0).Rows(i)("PatientName").ToString, _ TempDataset.Tables(0).Rows(i)("BillAmount").ToString, TempDataset.Tables(0).Rows(i)("Commission").ToString, Productvalue) Next

Member Avatar for paulablanca
0
89

The End.