Hi,
I want to send a query from Access to Excel and then use Automation to fiddle with the columns.
In Access, I can turn Access warnings off with
which will ignore any stupid warnings that I don't much care about. How do I do this from within the Excel Application? I want to replace the contents of some cells using the Replace function (using code) and I don't want the user to be bothered with a dumb warning message box popping up warning them that there are no cells to replace and then having to click the ok button.
Thanks...Ed
I want to send a query from Access to Excel and then use Automation to fiddle with the columns.
In Access, I can turn Access warnings off with
Code:
DoCmd.SetWarnings False
Thanks...Ed