Recent content by LucasGills69

  1. L

    Hierarchical Data, Recursion, Tree-Views, and a Custom Class to Assist

    Not sure if I was clear enough... English is not my mother tongue ;)
  2. L

    Hierarchical Data, Recursion, Tree-Views, and a Custom Class to Assist

    If you're dragging up to the TW border, the target becomes the first visible item at the top. If you're dragging down to the TW border, the target becomes the last visible item at the bottom. By ensuring that the top item's parent node or the bottom item's next node is visible, it actually...
  3. L

    Hierarchical Data, Recursion, Tree-Views, and a Custom Class to Assist

    Again thanks for the detailed answer. No easy way to do this, then. I'm currently checking a few options, I'll tell you if I come up with something. By the way you can solve the missing auto-scrolling using EnsureVisible on the target node's parent or next node.
  4. L

    Hierarchical Data, Recursion, Tree-Views, and a Custom Class to Assist

    Thanks for the quick answer. Yes I saw you were using up and down command buttons (I usually offer them as well) in addition to a contextual menu. What I'm looking for is a way to provide both dropping the selected node on another node (=make the selected node a child of the target node) and...
  5. L

    Hierarchical Data, Recursion, Tree-Views, and a Custom Class to Assist

    Great work you've done here man. I'm a fan of the Treeview control myself and use it as soon as info has to be displayed in hierarchical manner. The users love it as well because it allows to perform a lot of different actions in a very simple and graphical way. One thing I'm looking for is...
  6. L

    Solved Passing forms from one subform to another...

    "I don't see how I can remove this subform, with that selected record intact as its recordset" That's exactly the point, I want to keep the content of the sub-form in its current state in case the user wants to revert to it after starting another function. As CJ wrote, the way to go is...
  7. L

    Solved Passing forms from one subform to another...

    Hi George It's all about managing adequately the working space. Since I want the application frame (menu, header and so on) to stay in place whatever the user does, the easiest way is to use a sub-form for the working area. This allows me to keep control of the different elements. I don't...
  8. L

    Solved Passing forms from one subform to another...

    Sorry I forgot to mention that all this is done in runtime using VBA code.
  9. L

    Solved Passing forms from one subform to another...

    I have a form which I use as the main container for my application. It contains a menu on the left, a header that serves as the title bar, a footer that serves as the status bar and a sub-form that shows the current functionality. When the user selects a menu item on the left, I simply load the...
  10. L

    Greetings from the land of chocolate, cheese and erm... banks

    Hi folks Long time lurker here and wanted to thank you all for sharing your knowledge and ideas. I've been programming for years using languages/environements like C++, Delphi and Visual Basic and had a hard time at first in my new job since only MS Access is available. This site helped me a...
Back
Top Bottom