Call MouseLeave Event fro Program

Hi pendragon!

The MouseLeaveEvent needs only: "object sender, System.EventArgs e" to be triggered. So, all you have to do is to place the following line of code inside a function that uses both "object sender" and "System.EventArgs e":

Code:
comboBox1_MouseLeave(this, e);

This will force the event to execute...

Cheers!
 
Back
Top