| CodeGuru Home | VC++ / MFC / C++ | .NET / C# | Visual Basic | Newsletters | VB Forums | Developer.com |
|
|||||||
| Managed C++ and C++/CLI Discuss Managed C++ and .NET-specific questions related to C++. |
![]() |
|
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
How to create a pop up windows in a windows form?
I have a button in my program that when pushed should pop up a small window with menu of different options. What is the best way to do this.
Thanks in advance |
|
#2
|
||||
|
||||
|
Re: How to create a pop up windows in a windows form?
Quote:
ex. Code:
void CYourClass::OnButton()
{
CYourNewDialog m_showpopup;
m_showpopup.DoModal();
}
__________________
Please use code tags [code] [/code] We would change the world, but God won't give us the sourcecode.. ![]() Undocumented futures are fun and useful.... _________ Gili |
|
#3
|
||||
|
||||
|
Re: How to create a pop up windows in a windows form?
Quote:
__________________
I am not offering technical guidiance via email or IM Come on share your photo with us! CG members photo album! Use the Code Tags! |
![]() |
| Bookmarks |
|
||||||
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|