Below is the code I use to catch the event for a propertygrid named, "pgGeneral". When a value is changed in the grid I would like to be notified when a change has occured. I'm pretty sure that I am using the correct event, but it still does not fire when I change a value on the grid. Any help or suggestions?
Thanks.
VB Code:
Private Sub ValueChanged(ByVal s As Object, ByVal e As System.Windows.Forms.PropertyValueChangedEventArgs) _ Handles pgGeneral.PropertyValueChanged MsgBox("Value Changed") End Sub




Reply With Quote