H
Harry-Wishes
I want to launch Excel from Access which I though would be a piece of cake.
Excel does launch but, when Access reaches the end of the function, Excel
closes. How do I prevent this from occurring?
Public Function cmdTables_Click()
Dim oApp As Object
Set oApp = CreateObject("Excel.Application")
oApp.Visible = True
'Some code below
End Function
Excel does launch but, when Access reaches the end of the function, Excel
closes. How do I prevent this from occurring?
Public Function cmdTables_Click()
Dim oApp As Object
Set oApp = CreateObject("Excel.Application")
oApp.Visible = True
'Some code below
End Function