Tom:
Did you try entering SendKeys in Help? That should give you the full syntax. I don't know what keystrokes you are trying to reproduce. Off the top of my head:
+ = Shift
^ = Control
% = Alt
So if you needed to do something like copy and paste it could be something like:
SendKeys "^c"...
You'll have to look at the keystrokes involved with Word but you can use "SendKeys" to try and do the printing and close Word. For example:
Application.FollowHyperlink "C:\Documents and Settings\ufga20.000\Desktop\Word1.doc"
SendKeys "^p" 'Print the document
SendKeys "~" ' Hit enter for the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.