kernel actions???

  • Thread starter Thread starter Bad_Kid
  • Start date Start date
B

Bad_Kid

example:
want to make 4 buttons on form that represents mouse (move left; right; up;
down)
- how to process message (button_pressed) to the kernel of windows to move
mouse on screen???

(same thing with keybor input? how to perform keybord key_pressed inside the
program?

(link / idea/ article / mail ... anything, please... thnx)
 
Hi,
example:
want to make 4 buttons on form that represents mouse (move left; right; up;
down)
- how to process message (button_pressed) to the kernel of windows to move
mouse on screen???

(same thing with keybor input? how to perform keybord key_pressed inside the
program?

To perform KeyPress from code you can use the
SendKeys.Send(string keys) function.
Look in .NET docs for "SendKeys" class specification.

I'm affraid i don't know how to do this trick with mouse.

Cheers!

Marcin
 

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