During data exporting into Excel file, MS Word or MS Access I have some warning dialogs inside Delphi/C++Builder IDE. What can I do?
If you defined a UseCurrentInstance property of export component in True, then SMExport will try to find a current running instance of MS Excel/Word/etc. Inside of code I used try-except statement for activation of current instance (if exist) and if the instance is not available I’ll create a new (in except clause). If you ran a project from Delphi IDE, you received a warning. But if you’ll run a same project from Explorer (not from Delphi IDE), application will work without any warnings. PS: as alternative you can uncheck the “Stop on exception” option (or “Debug on exception” – it depends from Delphi version) in the Debugger Options item of Tools menu. You’ll find this option on Language Exceptions page. But anyway if UseCurrentInstance = False, then you’ll receive an error message only if MS Office is not installed on computer. No other reason.