Hallo,
ich habe in Access2003 eine Schaltflaeche, die ein Excel-Dokument oeffnen soll. Momentan oeffnet Sie aber nur Excel. Wie muss ich untenstehende Ereignisprozedur erweitern, damit er direkt ein bestimmtes Excel-Sheet oeffnet?
Dim oApp As Object
Set oApp = CreateObject(„Excel.Application“)
oApp.Visible = True
'Only XL 97 supports UserControl Property
On Error Resume Next
oApp.UserControl = True
Vielen Dank.
Oliver