Term
| How many form properties should I define at design time as opposed to runtime? |
|
Definition
| You should set all the properties that you can at design time. First, it will be easier to work with the form, because you can see exactly what the user will see. Also, debugging is easier, because there's less code. |
|
|
Term
| Should I let the user minimize and mazimize all forms? |
|
Definition
| Probably not. There's no point in letting a form be maximized if it isn't set up to adjust its controls accordingly. About dialog boxes, print dialog boxes, and spell-check windows are examples of forms that should not be resizable. |
|
|
Term
| True or False: The text displayed in the form's title bar is determined by the value in the TitleBarText property. |
|
Definition
| False The text displayed in the form's title bar is determined by the value in the form's Text property. |
|
|
Term
| The named color Control is what kind of color? |
|
Definition
|
|
Term
| Name three places where a form's icon is displayed. |
|
Definition
| In the title bar, on the task bar, and when the user presses Alt+Tab |
|
|
Term
| What is a window with a smaller-than-normal title bar called? |
|
Definition
|
|
Term
| For a Minimize or Mazimize button to be visible on a form, what other element must be visible? |
|
Definition
| The form's ControlBox property must be set to True. |
|
|
Term
| In general, what is the best value to use for a form's StartPosition property? |
|
Definition
| CenterScreen for the main form and CenterParent for all other forms. |
|
|
Term
| To maximize, minimize,or restore a form in code, you set what property? |
|
Definition
| The form's WindowState property. |
|
|
Term
| What property do you set to make a hidden form appear? |
|
Definition
| Set the form's Visible property to True. |
|
|