-
Is there a shortcut key for resizing a form. I need it to be able to maximise a form outside of my application (using the SendKeys function). Is there any other way to do this? The form is a plugin for Winamp, so I don't think Shell will work
Thanx in advance,
Matt
-
You could try
SendKeys "% X", True
(ie ALT+SPACE followed by X)
if the window has a control box on it that should do it. You may want to use "-" instead of the space; ie
SendKeys "%-X", True
sometimes this may work better.
------------------
Mark "Buzby" Beeton
VB Developer
[email protected]
-
Thanx for that, the actual line of code is:
SendKeys "%( )X"
Just in case anyone else was wondering!