Honestly, the best way is to not do forms programming in C++. Use C# to
build a user interface for your core functionality implemented in C++/CLI.
If you really want to rename a form, you need to rename all of the bits
individually - the .h file, the .cpp file (if there is one), the class
declaration, any typedefs or other uses of the class name, and I think there
are 1 or two designer-generated literal strings containing the form name as
well.
Since you are asking in a managed VC++ newsgroup, I'll assume you are
programming using managed code:
Form form ;
form.Text = "form title" ;
[==P==]
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.