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