Dialogbox
-
I want to make a dialog popup like a toolbox, but be a resizable dialog with controls i want on it. I've seen it in some other applications and I would like to add it to one of mine. Any links/ideas/suggestions would be appreciated. -Kmaz
-
I want to make a dialog popup like a toolbox, but be a resizable dialog with controls i want on it. I've seen it in some other applications and I would like to add it to one of mine. Any links/ideas/suggestions would be appreciated. -Kmaz
You want a resizable, modeless dialog. It's not different from a normal dialog, but you select resizable border from the styles in the resource editor, and call
Create
instead ofDoModal
. Add a member of the dialog class to the parent class, callCreate
as soon as possible (after the parent window is created, this depends on the kind of window), and then callShowWindow
to show/hide the toolbox. -
You want a resizable, modeless dialog. It's not different from a normal dialog, but you select resizable border from the styles in the resource editor, and call
Create
instead ofDoModal
. Add a member of the dialog class to the parent class, callCreate
as soon as possible (after the parent window is created, this depends on the kind of window), and then callShowWindow
to show/hide the toolbox.I can't believe i didnt think of that...I'm an idiot :-D
-
I can't believe i didnt think of that...I'm an idiot :-D
No, you would have been... not an idiot, but slightly silly if you hadn't asked the question :-)