Attach documents in Excel and then view them.

jpmccreary

New Member
Joined
Jul 21, 2010
Messages
11
I have an Excel workbook that allows users to attach documents. Once attached, I need an option to view/open these documents. I need to get the name of the open document so I can continue to control via the Excel workbook. Any ideas? Below is the full code for the View sub. I get "Run-time error 429: ActiveX component can't create object" when I try to assign Attachmentname the Activedocument name. I am sure it is the wrong syntax but I have not been able to find anything that works.

Private Sub cbView_Click()
Dim iIndex As Integer
Dim DocName As String
Dim MerlinName As String
Dim AttachmentName As String

MerlinName = ActiveWorkbook.name

iIndex = Me.lbAttached.ListIndex
If iIndex = -1 Then Exit Sub

DocName = Me.lbAttached.Value

ActiveWorkbook.Worksheets("DOCS").OLEObjects(DocName).Activate
AttachmentName = ActiveDocument.name

Workbooks(MerlinName).Activate
Range("OpenWorkbookName").Offset(iIndex + 1, 0) = AttachmentName

GetObject (AttachmentName)
ActiveWindow.WindowState = xlMaximized
Me.Hide
frmCloseAttachment.Show
End Sub
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
What does this do for you?

Code:
Dim objDoc As OLEObject
'<snip>
 
Set objDoc = ActiveWorkbook.Worksheets("DOCS").OLEObjects(DocName)
objDoc.Activate
Debug.Print objDoc.Name 
AttachmentName = objDoc.Name
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,198
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top