Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
880
Strange: AfterRowUpdate event is not getting triggered!
posted

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 = 1
End Sub

Venki

  • 469350
    Suggested Answer
    Offline posted

    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?