Search results for query: *

  1. B

    Threading not working with exception handling

    After further digging I found the problem. The error was a garden variety bug in the procedure being invoked. But that procedure didn't appear in the stack trace. It appears as if the exception were generated by the Invoke call. Because I'm relatively new to asynchronous processing I assumed it...
  2. B

    Threading not working with exception handling

    More specifics on the actual exception: It is a System.NullReferenceException thrown by the statement Me.Invoke(_BatchTerminatedSub) Message: "Object reference not set to an instance of an object." Stacktrace: at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate...
  3. B

    Threading not working with exception handling

    Hello, I'm experiencing a problem in which an exception in a background thread jumps out of its Try/Catch block and gets handled by the application's unhandled exception handler. I have a class that calls an overridden method (InitializeBatch) in a derived class, and it's wrapped in a...
  4. B

    Deployment of .NET-created DLLs for use from VBA

    Hi, I'm relatively new to anything outside of VBA programming (and a little VB6) so please forgive my ignorance. I'm trying to create a VB.NET class library and reference from a VBA application which will be deployed to several hundred users. I'm past the security, strong name key, etc...
Back
Top