nagovind
Member
Dears,
Is there is any way to capture range of cells and display the captured region as a picture in a window in user for such that after display it can be closed by the user.
Please advise.
Is there is any way to capture range of cells and display the captured region as a picture in a window in user for such that after display it can be closed by the user.
Please advise.
Code:
Sub Macro4()
Sheets("Sheet2").Select
Range("C2:F14").Select
Selection.CopyPicture Appearance:=xlScreen, Format:=xlBitmap
Sheets("Sheet2").Select
Range("A1").Select
ActiveSheet.Paste '(Instead of this pasting into active sheet need to display in unser form as a window such that after display it can be closed by the user')
End Sub