Link to home
Start Free TrialLog in
Avatar of gordoste
gordoste

asked on

Making Powerpoint Always on Top

I have a Powerpoint.Application object which i wish to have on top of every other window. How can i set it to be always on top??
I have a function from the web that uses the SetWindowPos API call which takes a hWnd as a parameter - but I don't know how to get the proper hWnd for the Powerpoint window.

Thanks in advance...
ASKER CERTIFIED SOLUTION
Avatar of Ryan Chong
Ryan Chong
Flag of Singapore image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of gordoste
gordoste

ASKER

Cool thanks!! Turned out i had to use this: http://support.microsoft.com/default.aspx?scid=kb;EN-US;112649 to find out the window class name and then use FindWindow as you suggested. Thanks!!