designing form
I have a feeling this might be a very stupid question, but here goes....how do I easily design forms using C++ in .NET 2005? When I start a new project for a Windows Mobile 5 device, I have "Windows application" chosen in the project settings. When the project opens, I can't find anywhere to bring up the form so I can design and put controls on it.
[361 byte] By [
stak32] at [2007-12-25]
I don't see my appliaction dialog. My project is called Test and in Solution Explorer, I have 2 rc files (Testppc.rc and Testppc.rc2). When I open both, I see the dialogs for the About box (IDD_ABOUTBOX and IDD_ABOUTBOX_WIDE)....
That's because when creating your project you did not select "Dialog-based". SDI or MDI apps do not use dialog templates, hence no way to use a designer - you have to build your window manually. Besides remember - those are based on a concept of a document, not a form. Create a new, dialog-based project instead.