Open excel workbook in access

J

John

Is it possible to open an excel workbook in Access and
have it actually be on the task bar and have it be the
active window?

Thanks,
John
 
K

kiat

Dim oApp As Excel.Application
Set oApp = CreateObject("Excel.Application")
oApp.Visible = True
 
Top