vote up -2 vote down star

I have created a "check Box " window with a button, when the button is clicked, It should open a "Edit" window, How can I do?

thanks

flag

0% accept rate
what do you mean about a "Check Box" window ? – Max Dec 18 '08 at 13:50
a Check Box window is a window with some check button – Gianfranco Dec 19 '08 at 8:35

3 Answers

vote up 0 vote down

You could instanciate a new window and show it on the click event

link|flag
vote up 1 vote down

It depends completely on the windowing system you are using, or the graphics library. ¿Are you using .NET? ¿MFC?

In any case, your button object will have a way to associate a function to its click event. Just write a function that does what you need (in this case, open the "Edit" window), associate this function to the click event of your button, and you are done.

link|flag
vote up 1 vote down

Make your edit window hidden by default in the resource editor and show it with ShowWindow(hEditWnd,SW_SHOW) when the button is clicked.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.