Tree view in Dialog Box
Tree view in Dialog Box
(OP)
Can I create a treeview in a dialog box??
Jackeroo75
Jackeroo75
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you a
Computer / IT professional? Join Tek-Tips Forums!
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
|
Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.
Here's Why Members Love Tek-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: Tree view in Dialog Box
Don't
/
I- Of
\ /
Know Way
\ /
Any
Assuming your writing in Extra Basic.
I think I've forgotten this before.
RE: Tree view in Dialog Box
-Level 1
-- Level 1-1
--- Level 1-1-1
--+ Level 1-1-2
---- Level 1-1-2-1
-+ Level 1-2
--- Level 1-2-1
Ok, then when you display it in your list box, you run through the array and determine if it's an open branch or a closed branch. You could even set it up so that if you open 1-A it close 1-B and visa-versa.
Anyhow, all you really need to do is toggle the + and - appropriately. Once you hit a +, you don't display anything underneath it (pretty easy to determine based on the number of dashes preceeding it). Then you just build a second array based on the data toggled on and off in the first array.
Then in your dialogbox function, you can allow the user to toggle the levels based on a click or a double-click (the way EB works the best way to handle a double-click is to have it remember what was last clicked and so if it's clicked twice it opens).
But, if you want something more than that, you'd have to be more specific.
RE: Tree view in Dialog Box
I'll let you know how it goes. Thank you!