+ Reply to Thread
Results 1 to 26 of 26

Collection inside a class, issues retrieving data

Hybrid View

bennett4455 Collection inside a class,... 07-20-2015, 05:15 PM
Kyle123 Re: Collection inside a... 07-21-2015, 01:56 AM
bennett4455 Re: Collection inside a... 07-21-2015, 06:15 AM
Kyle123 Re: Collection inside a... 07-21-2015, 06:24 AM
bennett4455 Re: Collection inside a... 07-21-2015, 06:35 AM
Kyle123 Re: Collection inside a... 07-21-2015, 06:52 AM
bennett4455 Re: Collection inside a... 07-21-2015, 07:16 AM
Kyle123 Re: Collection inside a... 07-21-2015, 07:18 AM
bennett4455 Re: Collection inside a... 07-21-2015, 07:32 AM
Kyle123 Re: Collection inside a... 07-21-2015, 07:50 AM
bennett4455 Re: Collection inside a... 07-21-2015, 07:59 AM
Kyle123 Re: Collection inside a... 07-21-2015, 08:08 AM
bennett4455 Re: Collection inside a... 07-21-2015, 12:04 PM
Kyle123 Re: Collection inside a... 07-21-2015, 12:44 PM
bennett4455 Re: Collection inside a... 07-21-2015, 02:56 PM
bennett4455 Re: Collection inside a... 07-22-2015, 06:24 AM
Kyle123 Re: Collection inside a... 07-22-2015, 07:31 AM
bennett4455 Re: Collection inside a... 07-22-2015, 11:50 AM
bennett4455 Re: Collection inside a... 07-22-2015, 12:19 PM
bennett4455 Re: Collection inside a... 07-22-2015, 04:32 PM
Kyle123 Re: Collection inside a... 07-22-2015, 04:39 PM
Kyle123 Re: Collection inside a... 07-22-2015, 04:38 PM
bennett4455 Re: Collection inside a... 07-22-2015, 04:55 PM
Kyle123 Re: Collection inside a... 07-22-2015, 04:56 PM
mikerickson Re: Collection inside a... 07-22-2015, 06:34 PM
bennett4455 Re: Collection inside a... 07-23-2015, 06:16 AM
  1. #1
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Question Collection inside a class, issues retrieving data

    Hi guy's, im having issues extracting data from a collection inside a class modual. I have put the class into a collection and i can extract information from there, but i wanna know what ive done wrong as i cant get a reference from the class itself.
    I think the issue is coming from this class modual below, when call .item(1) i dont get .sscc, i have over looked something but im not sure what for the life of me



    '''''''''''''' info modual 
    
    
    dim mycls as cls, mycls2 as cls2
    dim rng,rng2 as range
    
    Set mycls = New cls
    Set mycls2 = New cls2
    
    
    Worksheets("dump_data").Activate
    
     Set rng2 = Range("R2", Range("R60000").End(xlUp))
       
    
    With mycls
                             
    For Each c In rng2
    .Add c.Value, .count ''''''''''''''''works added all to collection
    Next
    .item(.count).sscc''''''''''''''''''''' fail.....intelligence doesn't provide .sscc or anything else
    .remove(.count).sscc'''''''''''''''fails aswell in the same way
    end with
    
    mycls2.Add mycls, mycls2.count + 1
    
    mycls2.item(mycls2.count).pSSCC.item(1) ''''''''''works though ???



    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''class modual cls class
    
    Private pId, pname as string
    Public pSSCC As Collection
    ''''''''''''''''''''''''''''''''''''
    'cls class
    ''''''''''''''''''''''''''''''''''''
    
    
    
    
    ''''''''''''''''''''''
    ' Id property
    ''''''''''''''''''''''
    Public Property Get Id() As String
        Id = pId
    End Property
    Public Property Let Id(Value As String)
        pId = Value
    End Property
    
    ''''''''''''''''''''''
    ' name  property
    ''''''''''''''''''''''
    Public Property Get name() As String
        name = pname
    End Property
    Public Property Let name(Value As String)
        pname = Value
    End Property
    
    
    Private Sub Class_Initialize()
    Set pSSCC = New Collection
    
    End Sub
    
    Public Sub Add(item As String, Key As String)
    pSSCC.Add item, Key
    
    End Sub
    
    Public Property Get count() As Long
    count = pSSCC.count
    
    End Property
    
    Public Property Get SSCC() As Collection
        SSCC = pSSCC
    
    End Property
    
    Public Property Let SSCC(Value As Collection)
        pSSCC = Value
    
    End Property
    
    Public Sub remove(indexorname As Variant)
    pSSCC.remove indexorname
    
    End Sub
    
    
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''bugs out here
    Public Property Get item(indexorname As Variant) As Collection
    Set item = pSSCC(indexorname)
    
    End Property
    
    Public Function NewEnum() As IUnknown
        Set NewEnum = pSSCC.[_NewEnum]
    End Function



    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''class modual cls2
    
    Private Pcls2As Collection
    
    Private Sub Class_Initialize()
    
    Set Pcls2= New Collection
    
    End Sub
    Public Sub Add(item As cls, Key As String)
    Pcls2.Add item, Key
    
    End Sub
    Public Property Get count() As Long
    count = Pcls2.count
    
    End Property
    Public Sub remove(indexorname As Variant)
    Pcls2.remove indexorname
    
    End Sub
    
    Public Property Get item(indexorname As Variant) As cls
    
    Set item = Pcls2(indexorname)
    
    End Property
    
    Public Function NewEnum() As IUnknown
        Set NewEnum = Pcls2.[_NewEnum]
    End Function

    any ideas???? to point me in the right direction
    Last edited by bennett4455; 07-21-2015 at 05:43 AM. Reason: code tags

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

    Re: Collection inside a class, issues retrieving data

    Please use code tags, thems the rules. Until you do so we can't help. However as a pointer, since you're new are you returning the same thing from your item property in cls as cls2?

    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE] [/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here



    (This thread should receive no further responses until this moderation request is fulfilled, as per Forum Rule 7)

  3. #3
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    sorry about that ive edited it now, yes i am looking for the same item() from both.
    original cls has a collection and some other stuff, the second cls2 is just a custom collection class holding the original cls.
    I have done something wrong in the original cls coz the insistence doesn't work on .item(1). but does mycls2.item(mycls2.count).pSSCC.item(1) ?? im all out of ideas and would greatly appreciate a point in the right direction


    path is cls2......cls......collection.item()
    i want to get to cls.collection before i add it to cls2
    and it is a string input, large numbers really but integer and long cut off 0's at the end sometimes so using a string sorts this out

    hope this is enough information, also running windows 8.1 and excel 2013 not that it will make much difference lol
    Last edited by bennett4455; 07-21-2015 at 06:23 AM. Reason: more detail

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

    Re: Collection inside a class, issues retrieving data

    But you aren't returning a collection here;
    Public Property Get item(indexorname As Variant) As Collection
        Set item = pSSCC(indexorname)
    End Property
    You're returning an element from a collection, so it should really be:
    Public Property Get item(indexorname As Variant) As String
        item = pSSCC(indexorname)
    End Property
    Since all you're really putting into the collection is a string. Does that make sense?

  5. #5
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    Hi, yes it does make sense, i have already tried this but i still had no joy?

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

    Re: Collection inside a class, issues retrieving data

    Ok, start at the beginning. Your code doesn't make a huge amount of sense.

    In non coding layman's terms, what are you actually trying to do? What's the goal of this exercise?

  7. #7
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    Ok goal is step one, input data into a cls modual,name as string, Id as string then a sscc collection, at this point I can't get .item. Step 2 is put that cls into a collection. Does that make it clearer ?

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

    Re: Collection inside a class, issues retrieving data

    No, forget about how you want to do it, pretend classes don't exist.

    Pretend I don't know any programming, what are you trying to do. Presumably you have a workbook with some data in and you're trying to put this into data structure to do what?

  9. #9
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    Ok a product has a name, Id and multiple sscc's or sometimes none associated with it. I want to be able to get hold of all the products within my code at times, also find product with no sscc associated with it before deciding if I should add it to the list of all products or not

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

    Re: Collection inside a class, issues retrieving data

    So you want 2 things?

    1. You want a list of all Products and their SSCS numbers
    2. A list of selected products that you add to from the list of All Products

    Is that correct?

    Do you have a sample workbook with the data in?

  11. #11
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    Yes, I am currently on my phone, will send an example when I get back 2 my computer. Thanks for your patience lol

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

    Re: Collection inside a class, issues retrieving data

    Ok mate, I'll have a look

    Edit: Are you also trying to create custom collection classes or are you getting confused?
    Last edited by Kyle123; 07-21-2015 at 08:23 AM.

  13. #13
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    workbook is 2 big??? advice

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

    Re: Collection inside a class, issues retrieving data

    Smaller sample workbook?

  15. #15
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    have a butchers, it should all make sense now
    Attached Files Attached Files

  16. #16
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    Any education that could point me in the right direction

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

    Re: Collection inside a class, issues retrieving data

    How do you want to access the data? By SSCC, ID or Name?

    How should the structure for 1A003 look like, it each sscc seems to have quantities rather than the ID, wouldn't you therefore use sscc as the top level collection?

  18. #18
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    I would like to access the sscc. You are right in a way, the sscc does reference a quantity, it is an item with a unique code attached so u could use it as a count, but I want to get a reference to it from the Id

  19. #19
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    Basically what i need is
    MsgBox myStock.item(1).SSCC to work and
    myStock.remove(1).SSCC
    the rest i can sort out, cheers
    Last edited by bennett4455; 07-22-2015 at 01:56 PM. Reason: update

  20. #20
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    I've figured out a work round but i still dont understand why .item().sscc wont work
    Thanks to the guys who have had a look, much appreciated
    work round is

    Public Property Get SSCC(caller As Integer) As String
        SSCC = pSSCC.item(caller)
    End Property

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

    Re: Collection inside a class, issues retrieving data

    I'll post you some code tomorrow when I'm at work.

    You haven't answered my question around how bothered you are about returning custom collections

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

    Re: Collection inside a class, issues retrieving data

    Because item doesn't return an object, you don't create an object. You just add a string to a collection and try and return an object, but it's not an object, it's a string.

    You haven't actually created an sscc object anywhere, if you want that then you meet to initialise that in our add method.

  23. #23
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    what a plum, penny has just dropped lol, i feel so stupid now. its the set item = lol
    this is what u mean
    Thanks for shaking me, im all sorted now thanks a million

    Public Property Get item(index As Integer) As String
    
     item = pSSCC(index)
    
    End Property

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

    Re: Collection inside a class, issues retrieving data

    Yes, that's what I meant

  25. #25
    Forum Expert mikerickson's Avatar
    Join Date
    03-30-2007
    Location
    Davis CA
    MS-Off Ver
    Excel 2011
    Posts
    6,229

    Re: Collection inside a class, issues retrieving data

    My general solution is to declare Item as a Public collection
    i.e.
    Insead of
     Private Pcls2As Collection
    Use
    Public Item as Collection
    _
    ...How to Cross-post politely...
    ..Wrap code by selecting the code and clicking the # or read this. Thank you.

  26. #26
    Registered User
    Join Date
    12-09-2014
    Location
    Norfolk
    MS-Off Ver
    2013
    Posts
    19

    Re: Collection inside a class, issues retrieving data

    Thanks a lot guys, how do I Mark this as resolved?

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Class and one property is also a class or collection
    By gosa in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-01-2011, 05:31 PM
  2. Replies: 22
    Last Post: 12-15-2010, 08:49 PM
  3. Collection of Class Modules
    By wildjester in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 07-11-2009, 09:26 AM
  4. Issues retrieving data from external sources
    By jschell in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 05-19-2009, 09:09 AM
  5. Class with property as collection of another class
    By MCCCLXXXV in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 11-26-2008, 04:35 PM
  6. [SOLVED] [SOLVED] RE: Retrieving the Collection of Ranges in a Workbook
    By K Dales in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 01-19-2005, 06:06 PM
  7. [SOLVED] [SOLVED] Retrieving the Collection of Ranges in a Workbook
    By Adam in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-19-2005, 06:06 PM

Tags for this Thread

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