Jump to content

Form builder?


Guest Palindrome

Recommended Posts

Guest Palindrome

When using the Smartphone 2003 SDK and Embedded VC++ is there a design view or form builder for laying out objects for the user to interact with?

Ideally I'd like to have some text boxes and labels for a simple calculation program.

If there isn't a form builder with EVC++ would anyone know of some links where I might get info on the way forms are built?

Cheers for any help. :D

Link to comment
Share on other sites

Guest MrMagoo
I've been told that Visual C# .NET has a form builder.

C++ has a dialog editor - which amounts to the same thing.

Just select "Insert" Menu, "Resource..." , "Dialog"

then click "new"

You then need to look at sample dialog based apps to see how to handle them, its basically simple tho'

Open the Dialog with a call to DialogBox() and then handle the message much like a standard window

Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.