Open excel workbook in access

  • Thread starter Thread starter John
  • Start date Start date
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
 
Dim oApp As Excel.Application
Set oApp = CreateObject("Excel.Application")
oApp.Visible = True
 
Back
Top