Click here to Skip to main content
16,022,417 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi ,
How is it possible to avoid mouse pointer over some forms..
Posted

1 solution

if you add a mousehover event on your form and hide it from there.
Like this.

Is this what you are looking for?

C#
private void Form1_MouseHover(object sender, EventArgs e)
{
     Cursor.Hide();
}
 
Share this answer
 
Comments
Dalek Dave 11-Aug-10 3:46am    
Well you learn something new every day!

I never knew of that, thanks.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900