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