I am new to VB.Net and have hard time understanding its events. is there a list that tells me what vb.net events is equivalent to vba events. I having problem updating values in the database. any suggestion or guidance will be highly appreciated.
Events are raised by classes and not really by VB.Net or VBA per se.
The click event of a button on a form in Access, for instance, is not raised by VBA, but rather by the Access.CommandButton class.
To see what events a class may expose you can use the object browser, both in VBA and VB.NET.