Results 1 to 6 of 6

Thread: what is enherits?

  1. #1

    Thread Starter
    yay gay PT Exorcist's Avatar
    Join Date
    Apr 2002
    Location
    . . . my reason of shame
    Posts
    2,729

    what is enherits?

    i see that a lot but i didnt figure out yet what does that mean!

  2. #2
    Hyperactive Member
    Join Date
    Feb 2002
    Posts
    261

    Re: what is enherits?

    Originally posted by PT Exorcist
    i see that a lot but i didnt figure out yet what does that mean!
    Ahh, its a simple concept! Oh, and its inherits

    Inheritance allows you to inherit (copy) all of the properies, variables, and methods of another class into your class.

    Here's an example:

    Code:
    Public Class ParentClass
    
         Public Sub SayHello()
    
              Msgbox("Hello")
    
         End Sub
    
    End Class
    
    Public Class ChildClass
         Inherits ParentClass
    
         Public Sub Whatever()
    
              SayHello()
    
         End Sub
    
    End Class
    When you create a 'ChildClass' object, and call its 'Whatever()' procedure, the 'SayHello' procedure is fired. SayHello() is part of the ChildClass object because it was inherited from ParentClass.

  3. #3

    Thread Starter
    yay gay PT Exorcist's Avatar
    Join Date
    Apr 2002
    Location
    . . . my reason of shame
    Posts
    2,729
    ah tks

    and btw i sayd that correctly..inherits

  4. #4

    Thread Starter
    yay gay PT Exorcist's Avatar
    Join Date
    Apr 2002
    Location
    . . . my reason of shame
    Posts
    2,729
    btw what a constructor is?

  5. #5
    PowerPoster hellswraith's Avatar
    Join Date
    Jul 2002
    Location
    Washington St.
    Posts
    2,464
    Here is a google search for you:
    http://www.google.com/search?hl=en&i...-8&q=OO+VB.NET

    You need to learn about Object Oriented (OO) programming to understand the questions your asking. I don't have Powerpoint installed on my computer right now, but the first link that comes up might be pretty cool.

  6. #6

    Thread Starter
    yay gay PT Exorcist's Avatar
    Join Date
    Apr 2002
    Location
    . . . my reason of shame
    Posts
    2,729
    downloaded it and hadnt the time to see it all but seems very good tks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width