03-28-2012 04:54 AM
Hi CD,
As per my knowledge in LabVIEW and ActiveX,
instead of using those many nodes, I would recommend you to use simply the 'Save' property node of the workbook and then quitting the Excel using 'Quit' property node of excel application.
Hope it helps.
03-29-2012 02:38 AM
Hi everyone.
Thank you for your input. I finally got it working.
The final solution was:
- _Application.DisplayAlerts = false
- _Workbook.Save
- _Workbook.Saved = true
- _Application.Quit
Regards
CD