Hello:
I am using Wingrid 5.2.
I have a Winform that has two UltraGrids. While the AfterRowUpdate event gets triggered for one, it does not get triggered for the other. Here's the procedure of the offending UltraGrid event:
Private Sub UgUnbilled_AfterRowInsert(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinGrid.RowEventArgs) Handles UgUnbilled.AfterRowInsert MsgBox("Why am I not in here?") 'e.Row.Cells("Patient_Seen_C").Value = 1End Sub
Venki
Hi Venki,
You asked about AfterRowUpdate, but the code here is for AfterRowInsert. Which one is giving you the problem? And when are you expecting the event to fire that it is not doing so?