Search results

  1. C

    Solved Treeview nodes error

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

    Solved Treeview nodes error

    Nevermind... fixed with your update
  3. 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?
  4. C

    Solved Treeview nodes error

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

    Solved Treeview nodes error

    ID: "Item-" & [ItemID]
  6. 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?
  7. 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 =...
  8. 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!
  9. 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 =...
  10. C

    ItemGenie location address

    Thanks.
  11. C

    ItemGenie location address

    Whew! Now to make it work for me. Thank you so much!
  12. 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.
  13. C

    ItemGenie location address

    I missed that in E2E. I'll study it. Knowing I'm not off the wall is a big deal.
  14. 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...
  15. C

    Error 5 installing V-Tools

    open Access in administrative mode then go to open, search for the file and click read-only at the bottom before selecting it. Instructions are on the V-Tools site. The problem I had before was the deep search said that function was not available and then crashed so I had to use task manager to...
  16. C

    Error 5 installing V-Tools

    I had V-Tools installed and I was getting an error so I uninstalled it. Now I'd like it back again but every time it fails because of the following Error 5: lrc = api_RegQueryValueExNULL(lhKey, szValueName, 0&, lType, 0&, cch) If lrc <> ERROR_NONE Then Error 5 Irc returns the value of 2...
  17. C

    Solved Treeview nodelevel

    I very much apologize. Someone needs to tell me to never work on this stuff late at night because I don't think well then. For some reason I thought level should be a property of the node but after going through your help it turned out to be very simple Public Sub FormatNodes() Dim nd...
  18. C

    Solved Treeview nodelevel

    I'll sleep on it. Thank you so much for your help!
  19. C

    Solved Treeview nodelevel

    Here are my loctions... all headers. But headers on level 2 and level 3 should be different than level 1. Here are my levels. Now what? Public Sub FormatTree() With tvw.TreeView .Font.Size = Me.FontSize .Font.Name = Me.FontName .Indentation = 150 End With End...
Back
Top Bottom