I have developed a highfidelity chat client for a server I've created... As it stands I've created forms on the fly using a template form which holds the richtextbox and other controls such as command buttons and what not.
each form represents a channel for the server, I used a SSTab Control nested on a picturebox (or coolbar) control.
I use an array to hold the name of the channel joined and compare it with the captions of each form created.. in order to manage the forms
now I've come across a problem where I have to create a private dialog session which I can't think of any ways to do so
is there any controls that are like the windows taskbar for an MDI application that can easily manage all mdi child forms?
I've included a screenshot of my client with a large black arrow pointing to the sstab control which I currently use at the momment but have run into the problem.
any ideas?
Last edited by TokersBall_CDXX; May 26th, 2003 at 11:46 AM.
I've been trying to do the same thing but till now I still couldn't find any control like you've described. I'm simulating the taskbar by adding array of buttons on a toolbar which represent each of of the loaded form. (I used Tag to identify the windows).
I'lll appreciate it if you can PM me when you found a nice control for the taskbar.
Cheers!
"If ignorance is bliss, that probably explain why I'm in a such a mess right now!!"
Originally posted by TokersBall_CDXX Well here goes....
I have developed a highfidelity chat client for a server I've created... As it stands I've created forms on the fly using a template form which holds the richtextbox and other controls such as command buttons and what not.
each form represents a channel for the server, I used a SSTab Control nested on a picturebox (or coolbar) control.
I use an array to hold the name of the channel joined and compare it with the captions of each form created.. in order to manage the forms
now I've come across a problem where I have to create a private dialog session which I can't think of any ways to do so
is there any controls that are like the windows taskbar for an MDI application that can easily manage all mdi child forms?
I've included a screenshot of my client with a large black arrow pointing to the sstab control which I currently use at the momment but have run into the problem.
any ideas?
well since no one here could help me out, I had to use alterior methods and convert a usercontrol that took way too long to make into an activeX OCX
so for all those out there that really need a control like this here ya go ;o) despite un-answered questions or non-qualified help..
MDITASK BAR FREE!!!!
Don't post compiled OCX's, DLL's or EXE's...
They are not much use to anyone plus, anyone who is stupid enough to run that on their PC deserves to get their hard drive trashed.
If you JUST wanted a menu bar in an MDI form then when you show a form, why not just add an extra button to a standard toolbar?!
I can't see what's so hard about this problem...very basic.