WinApi C ++ How to open a window by clicking a button?
3 answers
This depends entirely on the windowing system or graphics library you are using. Are you using .NET? ¿MFC?
Either way, your button object will have a way to bind a function to the click event. Just write a function that does what you want (in this case, open the Edit window), bind that function to your button's click event, and you're good to go.
+1
source to share