I wish to make a screensaver that has an image bouncing around on the screen and my first problem is how do I make the form holding the image full screen
in vb it would be:
Code:
form1.width = screen.width
form1.height = screen.height
form1.left = (screen.width - form1.width) /2
form1.top = (screen.height - form1.height) /2
how would I do that in VB

second question how do get the position of the mouse
it probably calls GetCursorPos but I do not know how to do that, I would also like to save those numbers so I can end the program when the mouse moves(and if there is an easier way to do that then please tell me)

And how can I get an image box to bounce around the screen.