+ Reply to Thread
Results 1 to 6 of 6

Objects, Properties and Methods

  1. #1
    Registered User
    Join Date
    09-27-2012
    Location
    Warrington, England
    MS-Off Ver
    Excel 2007
    Posts
    27

    Question Objects, Properties and Methods

    Hi, just joined and this is my first question.
    I'm building myself a database to log the various bits of VBA codes that I've used in various macros so that when I think "Now how did I do that....?" I can quickly find the code / spreadsheet that I need. However, I'm a little confused about Objects, Properties and Methods. For example in the code:

    Please Login or Register  to view this content.
    what is the Object, Property and Method? Also, is there a "family tree showing how Properties and Methods etc are linked? I realise this is a two question thread but think they are linked bu apologoes if I should have asked two separate questions.

    Regards


    MODERATOR'S NOTE:
    This thread was moved to the VBA forum as per forum rules.
    Last edited by JBeaucaire; 10-09-2012 at 02:41 AM. Reason: Moved thread and added code tags.

  2. #2
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Objects, Properties and Methods

    Activesheet - object
    .Range("A1") - Property of Activesheet
    .Select - Method

    you can not write Activesheet("Sheet1"), but Sheets("Sheet1"), Activesheet is the active Sheet at this moment
    Last edited by patel45; 10-09-2012 at 02:57 AM.
    If solved remember to mark Thread as solved

  3. #3
    Registered User
    Join Date
    09-27-2012
    Location
    Warrington, England
    MS-Off Ver
    Excel 2007
    Posts
    27

    Re: Objects, Properties and Methods

    Thanks, I did know that and have used both in the past but what is the object, property and method of this statement?

  4. #4
    Forum Guru Kyle123's Avatar
    Join Date
    03-10-2010
    Location
    Leeds
    MS-Off Ver
    365 Win 11
    Posts
    7,239

    Re: Objects, Properties and Methods

    Well it can seem a little confusing, since a property can also be an object.

    So what you actually have:
    Please Login or Register  to view this content.
    Application is an object
    Worksheets is a property (a collection) of the Application Object that retrurns a Worksheet Object
    Range is a property of the Worksheet Object that returns a Range Object
    Select is a Method of the Range Object

    No, as far as I am aware there is no "family tree", however, intellisense shows you the next level down, having the locals windows open when you step through code will show you your position in the tree down and finally the Object Browser lets you search through classes/objects to see their properties and methods
    Last edited by Kyle123; 10-09-2012 at 03:11 AM.

  5. #5
    Forum Guru Andy Pope's Avatar
    Join Date
    05-10-2004
    Location
    Essex, UK
    MS-Off Ver
    O365
    Posts
    20,481

    Re: Objects, Properties and Methods

    As well as the object browser there is the OM at MDSN
    http://msdn.microsoft.com/en-us/libr...ice.12%29.aspx

    And the help qill also show methods/properties of objects
    Cheers
    Andy
    www.andypope.info

  6. #6
    Forum Expert
    Join Date
    07-15-2012
    Location
    Leghorn, Italy
    MS-Off Ver
    Excel 2010
    Posts
    3,431

    Re: Objects, Properties and Methods

    thanks for clarification, at the end my answer was wrong or not complete ?

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1