Chapter 6 Multiple Choice
The _______ is found in the Project Designer and contains the information about the program title, program version, programmer, and company.
About box
The project's assembly information can be retrieved by the code behind a(n) ____________ template form.
About box
The _______ is available in most Windows programs and usually displays information about the program version as well as the company name.
About form
To add a form from another project into your project, select _______ from the "Project" menu.
Add Existing Item
In order to add a new blank form to a project, select _______ from the "Project" menu.
Add Windows Form
Message boxes allow the programmer to be very creative when displaying summary information and company logos.
False
The first form a project displays is called the default form.
False
The hardest way to switch between forms is to use the tabs at the top of the Document window that appear when a form is displayed.
False
In a project with multiple forms, the _____________ form is the first form loaded into the computer's memory and displayed on the desktop.
Startup
When a project begins, the first form to display is called the _______.
Startup form
Add a new form to a project by selecting Add Windows Form from the Project menu.
True
Each form is a separate class in the project.
True
Each form is a separate file in the project folder.
True
Forms can be used in multiple projects.
True
Multiple forms are allowed in C# projects.
True
The number of forms allowed in a project is virtually unlimited.
True
When adding an existing form to a project, select only the file with the .cs file extension and VS will automatically copy the form files with the designer.cs extension and the .resx extension.
True
Which of the following statements about forms is not true?
With multiple forms, you must specify the startup form or an error will occur.
Professional applications use a(n) _______ to tell the user that the program is loading and starting.
splash screen
You cannot remove a form from a project by
writing code in a button on the form that uses the form name and the Close method.