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
|
|
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
|
||||
|
|
|
You could instanciate a new window and show it on the click event |
||
|
|
|
|
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. |
||
|
|
|
|
Make your edit window hidden by default in the resource editor and show it with ShowWindow(hEditWnd,SW_SHOW) when the button is clicked. |
||
|
|