*****EDITED***
ANSWER IS:
Programically Zoom Magnification of Excel useing the Excel Object Library.
***Original Question
I have an app where I need to simulate holding the ctrl key and clicking the middle mouse button.
I have the middle mouse button done, but how do I simulate the ctrl key being held down, then release it when I am done?
Thanks
ANSWER IS:
VB.NET:
dim _wbdoc as new excel.workbook
_wbdoc.Windows(1).Zoom = 20 ' can be any number from 10 -400
Programically Zoom Magnification of Excel useing the Excel Object Library.
***Original Question
I have an app where I need to simulate holding the ctrl key and clicking the middle mouse button.
I have the middle mouse button done, but how do I simulate the ctrl key being held down, then release it when I am done?
Thanks
Last edited: