Hi, I have created a form with one button. I m using mouse hover event on button to execute code! But the problem is, I want to execute the code only if my mouse hover on button for more than 2 or 3 seconds!

You might try this:

private void button1_MouseHover(object sender, EventArgs e)
        {
            // check if this point stays within bounds of the button
            // for longer then 2 secs.
            Point CP = Cursor.Position;
        }
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.