How to switch between Forms in Visual C++?

Jun 2, 2018 at 7:30pm
I'm using Visual Studio 2013 (If that matters)
and I am working on a project
I can open form 2 from form 1 but...

The errors come when i try to SWITCH BACK TO FORM 1 FROM FORM 2..

What am I supposed to do?
Jun 2, 2018 at 11:37pm
Error messages are useful. Try googling them, or post the exact messages here.

Describe step-by-step how to reproduce your problem.
Jun 8, 2018 at 1:37pm
talk about your problem specifically
Jun 10, 2018 at 4:01pm
from what little you give us, I have thoughts..

are you creating the form modally? This setting means that "whatever you just invoked is in charge until closed, you can't swap out of it" which is useful for OK type messages that require information from user to proceed, but poor for forms that are side by side, because you can't swap! Back in the day this was done via "do modal" in some places and a setting in the widget itself in other cases. Dunno about how its done currently (not that 2013 is remotely current, you should upgrade so you can use c++ 17 features).

If this isn't the problem, we need more info.


Last edited on Jun 10, 2018 at 4:03pm
Topic archived. No new replies allowed.