Copy and Paste Query

C

CyberBhai

How can I find out, while pasting, which shape/shapes I have copied ? I am
using 'visCmdUFEditPaste' for pasting.
 
J

JuneTheSecond

You might reselect the selection before you had copied.
Dim shp As Visio.Shape
Dim mySelection As Visio.Selection
Set mySelection = ActiveWindow.Selection
ActiveWindow.Selection.Copy
Application.DoCmd visCmdUFEditPaste
ActiveWindow.DeselectAll
For Each shp In mySelection
ActiveWindow.Select shp, visSelect
Next
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top