Program that copy & Paste - Clipboard respond stops

G

Gary

I have a VBA process of copying from Visio and Pasting into power point. I
get a message that Visio is asking if I wish to save the clipboard to paste
into another application. I have to then say Yes to continue.

Does anyone know how I can prevent this from happening???


Thanks,

G
 
A

Al Edlund

I'd start with this,
AlertResponse property
See AlsoApplies ToExampleSpecifics

Determines whether Microsoft Office Visio shows alerts and modal dialog boxes to the user.

intRet = object.AlertResponse

object.AlertResponse = intExpression

intRet Integer. Zero (0) to display alerts to the user and allow the user to respond, or the value of the default response (see Remarks).

object Required. An expression that returns an Application object.

intExpression Required Integer. Zero (0) to display alerts to the user and allow the user to respond, or the value of the default response to supply (see Remarks).



Version added
4.1

Remarks
Certain operations, such as closing a document that has unsaved modifications, cause Visio to display an alert or modal dialog box requesting the user to supply a response such as OK, Yes, No, or Cancel. To prevent Visio from displaying an alert or modal dialog box when a program performs such an action, set the AlertResponse property to a default value for the response. In this case, Visio does not display the alert or modal dialog box; instead, Visio behaves as if the user responded to the alert or modal dialog box with the value of the AlertResponse property.

If the AlertResponse property is 0 (its default value), alerts and modal dialog boxes are displayed.

The values you supply for the AlertResponse property correspond to the standard Windows constants IDOK, IDCANCEL, and so forth.



al
 

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