How to disable event

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

Guest

Hello,
I am writing vb .net win form application.
The code for disable button event at C# is:
button1.Click -= new System.EventHandler(button1_Click);
How can this be done at vb .net?

Thank you.
 
Hi Dudi,

try

RemoveHandler(button1.Click, AddressOf(button1_Click))

Roland
 
Hi Roland
I get syntax error message
Thank you.

Roland Polzer said:
Hi Dudi,

try

RemoveHandler(button1.Click, AddressOf(button1_Click))

Roland
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top