Hi
I am currently working on an Access app which will take data in from an Excel spreadsheet. It will be stored and processed in Access and later output to Excel again.
I have got Access to read from and create Excel spreadsheets, but it is a bit untidy to close Excel as it asks whether you wish to save changes (even though there have been no changes). I am curretly using:-
Dim MyXL As Object
Set MyXL = GetObject("c:\temp\" + FlowNameToLoad)
MyXL.Application.Visible = True
MyXL.Parent.Windows(1).Visible = True
'Some code
MyXL.Application.Quit
Set MyXL = Nothing ' Release reference to the
Is there an Excel method I can use to terminate it without saving?
All the best
Keith
I am currently working on an Access app which will take data in from an Excel spreadsheet. It will be stored and processed in Access and later output to Excel again.
I have got Access to read from and create Excel spreadsheets, but it is a bit untidy to close Excel as it asks whether you wish to save changes (even though there have been no changes). I am curretly using:-
Dim MyXL As Object
Set MyXL = GetObject("c:\temp\" + FlowNameToLoad)
MyXL.Application.Visible = True
MyXL.Parent.Windows(1).Visible = True
'Some code
MyXL.Application.Quit
Set MyXL = Nothing ' Release reference to the
Is there an Excel method I can use to terminate it without saving?
All the best
Keith