Search results

  1. C

    Solved Treeview address

    YEEES!!! Nailed it! This is exactly what I wanted.:ROFLMAO: Thank you so much!
  2. C

    Solved Treeview address

    So... it's not in the treeview... Dlookup(the location table, NodeLevel?, ParentID)?
  3. C

    Solved Treeview address

    @MajP Do you have a sub called "GetLevelIdentifier"? as in: ParentLevelIdentifier = GetLevelIdentifier(tvw.getNodePK(ParentNode), "LO")
  4. C

    Solved Treeview address

    Exactly. I just don't get how to get there. The LOPath is NOT what I want but what your sub is returning after I messed with it.:rolleyes: I need to turn node texts to numbers.
  5. C

    Solved Treeview address

    @MajP Because I'm looking for an address and the nodetext is very lengthy, I changed the NodeText to NodeLevel. That's not right either. What I'm looking for, and I think it's in E2E... sort of Each item has a DocNo that will be the ending number. But the LOPath of the locations should be: Top...
  6. C

    Solved Treeview nodes error

    Treeview loads and doesn't bark when it unloads. All is well!
  7. C

    Solved Treeview nodes error

    Nevermind... fixed with your update
  8. C

    Solved Treeview nodes error

    You've done a lot for me. Thanks. Do you notice that your ItemGenie also stalls at sortandlevel when it's closed?
  9. C

    Solved Treeview nodes error

    When this thing starts working I'll be doing the drinking.
  10. C

    Solved Treeview nodes error

    ID: "Item-" & [ItemID]
  11. C

    Solved Treeview nodes error

    my primary key is autonumber so it is numeric . Debug says theNode.key is "Location-7" and theNode.Tag is "". So getNodePK = Replace(theNode.Key, theNode.Tag, "") returns Location-7. I've tried to trace theNode.tag back... it's not a property, it's not a constant, where is it set?
  12. C

    Solved Treeview nodes error

    Public Function getNodePK(theNode As Node) As String getNodePK = Replace(theNode.Key, theNode.Tag, "") End Function I always have trouble here too. Can never find theNode.Tag so calls it a type mismatch. Is there a way just to return the ID? Well the type mismatch ends up here: PK =...
  13. C

    Solved Treeview nodes error

    Well! there ya go! I worked and worked to keep from asking (always my fault!) and now you're taking the blame!!! I am so on this!
  14. C

    Solved Treeview nodes error

    @MajP When loading the treeview it completes but breaks at the last record Private Function FindRoot(ByVal nodX As Node, tvw As TreeView) As Node On Error GoTo ErrHandler Dim n As Integer n = nodX.Index Debug.Print nodX.Index While n <> nodX.Root.Index n =...
  15. C

    ItemGenie location address

    Thanks.
  16. C

    ItemGenie location address

    Whew! Now to make it work for me. Thank you so much!
  17. C

    ItemGenie location address

    Just... Wow! On E2E and Genie.. I am completely confused about LabelEdit. What calls it? It's shown as a property of the form in the object browser but I don't get it.
  18. C

    ItemGenie location address

    I missed that in E2E. I'll study it. Knowing I'm not off the wall is a big deal.
  19. C

    ItemGenie location address

    @MajP Some years ago I used your treeview to organize some file cabinets. I had a table of DRawers, a table of DIvisions, a table of FOlders, and a table of ITems. Then I used a union query for the treeview. Each item had an address of...
Back
Top Bottom