Hi Guys,
I was wondering if someone can help finish / make a vba code to take a print screen of just the left screen on a dual monitor?
Right now I have it so it takes a print screen of the active screen but this does not work when I try and use a keyboard shortcut while in excel.
Below is the code I have so far. It takes a print screen and paste into the tab called "ss"
Thanks for any help!!!
Sub PrintTheScreen()
Application.SendKeys "(%{1068})"
DoEvents
Sheets("SS").Select
ActiveSheet.Pictures.Paste.Select
End Sub
I was wondering if someone can help finish / make a vba code to take a print screen of just the left screen on a dual monitor?
Right now I have it so it takes a print screen of the active screen but this does not work when I try and use a keyboard shortcut while in excel.
Below is the code I have so far. It takes a print screen and paste into the tab called "ss"
Thanks for any help!!!
Sub PrintTheScreen()
Application.SendKeys "(%{1068})"
DoEvents
Sheets("SS").Select
ActiveSheet.Pictures.Paste.Select
End Sub