On Jun 22, 2006, at 1:50 PM, Seth Duke wrote:

On 6/22/06 3:46 PM, "Scott Wagner" <[EMAIL PROTECTED]> wrote:

i have RB 5.5.5 and i want to know when this would get called in a
console App. i have it set as a meathod. i just cannot figure out if
it activates and runtime or do i have to call for it.


Thank You
Scott

If you create a custom class and add a constructor, it is called when a new
instance of that class is created, ie:

Dim c As MyClass

c = New MyClass //<--Constructor called...

And any other time you call it .... it's only sort of special
Try

        Dim c As MyClass
        
        c = New MyClass //<--Constructor called...

        c.Constructor //<--Constructor called...
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>

Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>

Reply via email to