Opening Multiple Forms
Managed C++/CLI
2
Posts
2
Posters
6
Views
1
Watching
-
I would like to open more than one Form at once and can't seem to do it. I have a base form and want to pop up a custom message box form on top of it when needed. Anyone have any ideas? Thanks in advance,
dtamburin wrote: I would like to open more than one Form at once I guess you mean modeless forms. You can use
Show()
for that. dtamburin wrote: I have a base form and want to pop up a custom message box form on top of it when needed. If you mean, you want a modal form you need to useShowDialog()
instead ofShow()
Or you can use theMessageBox
class
Author of the romantic comedy Summer Love and Some more Cricket [New Win]