Search results for query: *

  1. N

    Question My plan for dynamic add-on loading - Thoughts?

    Hi! I am currently developing an application that will be the "base" for several components (business reporting systems, order management, etc). The idea is that our customers will install this "mother application", and we will offer components that will slot into it, expanding the...
  2. N

    Handling events from an object declared in a global module?

    That is a very good point indeed... I'll look into it Thank you again :)
  3. N

    Handling events from an object declared in a global module?

    True, but I'll be handling these events in multiple classes, and the object will be re-instanced a number of times, so having local copies in every class will just get very confusing and hard to maintain. Appreciate your help though, cheers :)
  4. N

    Handling events from an object declared in a global module?

    That worked very nicely, thank you! The purist in me would still like to use the "Handles" approach, but hey, I'm not restructuring my program for it. Yeah, see this is where I miss my C++ pointers, hehehe :p
  5. N

    Handling events from an object declared in a global module?

    Hi! I have a bit of a conundrum. I have a VB.net module where I declare some global variables (and since they're in a module, they're also shared). Now, I declared them like so: Module modGlobals Public WithEvents g_Customer As New Customer() Public WithEvents g_Ord As New Order() End...
Back
Top