Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to access from VBA in Visio 2007 a Com Add-in called "VisioDB4oAddIn" that I have created using Visual Studio 2008 using the following code:-

Sub CallVSTOMethod() Dim addIn As COMAddIn Dim automationObject As Object Set addIn = Application.COMAddIns("VisioDB4oAddIn") Set automationObject = addIn.Object automationObject.ImportData End Sub

I have used exactly the same process to create the Com Add-in as that described for Excel at the following link:- http://msdn.microsoft.com/en-gb/library/vstudio/bb608621(v=vs.90).aspx

It works fine for Excel.

I have spent ages searching Google etc but can't find quite what I need. Is it possible to do this in Visio with Com Add-ins and if so any ideas as to what I'm doing wrong?

Thanks,

Paul

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.