B b8tovene New Member Jan 23, 2002 #1 I am calling excel in a progress program and populating cells etc. anyone have the syntax to supress to "Do you want to save your changes" prompt? As always, thanks for your help.
I am calling excel in a progress program and populating cells etc. anyone have the syntax to supress to "Do you want to save your changes" prompt? As always, thanks for your help.
jongpau Member Jan 23, 2002 #2 Hi Mark, Try this: /* Close workbook without save changes question */ chWorkBook:Close(0,,). /* Quit Excel */ chExcel:Quit. /* Release com-handles */ RELEASE OBJECT chWorkbook. RELEASE OBJECT chExcel. It worked for me HTH.
Hi Mark, Try this: /* Close workbook without save changes question */ chWorkBook:Close(0,,). /* Quit Excel */ chExcel:Quit. /* Release com-handles */ RELEASE OBJECT chWorkbook. RELEASE OBJECT chExcel. It worked for me HTH.
C cup99 New Member Jan 23, 2002 #3 You can also turn most system prompts off by using the following command: <com-handle>isplayAlerts = true/false.
You can also turn most system prompts off by using the following command: <com-handle>isplayAlerts = true/false.