I'm trying to open an excel sheet, run the macro and close it periodically to get an E-Mail notification when a date in a cell changes to "xxx". Unfortuantely, powershell shows an error when running the macro below: -------------------------------------------------------------------------------- Sub tata(ByVal Target As Range) On Error Resume Next If Target.Cells.Count [...] read more
I have a VB.NET winforms app which uses an ActiveX control (ocx). Via interop, I have a reference to an object defined in the ocx and call various functions on it. This works ok for the most part. I had some issues with one function call causing a memory leak [...] read more