DataGrid Question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I defined
Sub OnItemCommand() Action
XXX
XXX
End Sub

If there are any method to
stop raising the OnItemCommand
when I click a button?
( I don'w want to edit the code inside
a onItemCommand)

Thank you very much
 
just remove the wired up event handler in the initializecomponent method
it will be something like this.itemcommand += blah blah blah
 
Back
Top