Screen 2 SNAPSHOT is it possible

colbecd

New Member
Joined
Apr 30, 2009
Messages
25
Hi all

I know its possible for VBA code to be made to take a snap shot of your desktop however i have to screens at work and only want the snap shot of screen 2 does anyone know if this is even possible?

Thanks in advance!
Dan
 

Excel Facts

Excel motto
Not everything I do at work revolves around Excel. Only the fun parts.
I think excel Vba allow to snapshot only in excel workbook..

Code:
 Sub snap()


    Range("C6").Select ''' U can exapand Range here
    Selection.CopyPicture Appearance:=xlScreen, Format:=xlPicture
    ActiveSheet.Paste
    
End Sub
other than this... there is 2 sortkey for Windows user

1- Ctrl+Print scrn

2- Ctrl+alt+print scrn -- Only for active window



Hope it will help you...
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top