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
 
Back
Top