event and not event sub

  • Thread starter Thread starter Daves
  • Start date Start date
D

Daves

I have an event function for button
void Test(Object s, EventArgs e)

How could I call that function not as an event call?
 
If you're not using s or e in your method, you can call it like

Test(null, null);

or, if you are using them,
Test((object)myButton, new EventArgs());

Dale Preston
MCAD, MCDBA, MCSE
 

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