Link to home
Start Free TrialLog in
Avatar of Fi69
Fi69

asked on

Word VBA Programmer with Enterprise Connect experience

My organization uses Enterprise Connect (content server) to save documents.

I'd like to be able to open the Enterprise Connect Save As Dialog box by code. I'd be happy to get this far.

Ideally, if i did open the Enterprise Connect Save As Dialog box, I'd like to paste the contents of the clipboard into the "Name" box. I don't need to do anything just then.

I've identified that Enterprise Connect is a ComAddin, but I'm really out of my depth outside of that. Has anybody got any idea?

Sub ShowSaveAS

    Dim oCAI As COMAddIn
    Dim obj As Object
    
    
    For Each oCAI In Application.COMAddIns
        If oCAI.ProgID = "UCOfficeAddin.Connect" Then
            Set obj = oCAI.Object
            Exit For
        End If
    Next oCAI

    obj.savedialog.Show

    ojb.Dialogs(savedialog).Show

end sub

Open in new window

This question needs an answer!
Become an EE member today
7 DAY FREE TRIAL
Members can start a 7-Day Free trial then enjoy unlimited access to the platform.
View membership options
or
Learn why we charge membership fees
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.