Imran
  • Imran
  • Member Topic Starter
2019-04-10T15:03:18Z
I just upgraded to 7.0 and I'm finding that events are not triggering when the grid is referenced from a class module. For example.

On my form with the grid I have:


Dim moLayoutTool As clsLayoutTool

Set moLayoutTool = New clsLayoutTool
Set moLayoutTool.iGridColumnList = iGridColumnList.Object
Then in my class object I have:


Public WithEvents iGridColumnList As iGrid

Private Sub iGridColumnList_CellCheckChange( _
        ByVal lRow As Long, _
        ByVal lCol As Long, _
        ByRef eNewCheckState As ECellCheckState, _
        ByRef bCancel As Boolean)

End Sub

But the cell check change event does not fire anymore, it used to in 6.5.

Anyone else experiencing this or have any ideas?

Thanks
Imran
Imran
  • Imran
  • Member Topic Starter
2019-04-10T15:41:17Z
Nevermind, I see now that the Event CellCheckChange has been changed to BeforeCellCheckChange. I guess I should read release notes.
Imran