Answer the following statements true (T) or false (F)

1. Visual Studio provides snap lines to help align controls.
2. You can use control properties to disable a control or to hide the control from the user.
3. Because of the nature of a GUI, a form cannot be set to a fixed size.
4. When parent containers are resized, all anchored controls within the containers maintain their relative position to their anchored sides.
5. A GroupBox can be used to organize related controls.


1. True.

2. True.
3. False. You can set a form to a fixed size by setting its MinimumSize and MaximumSize
properties to the same value.
4. True.
5. True

Computer Science & Information Technology

You might also like to view...

What is the difference between the iterators defined here.

What will be an ideal response? ``` vector vec; //put 10 values into vec const vector::iterator p = vec.begin(); vector::const_iterator q = vec.begin(); ```

Computer Science & Information Technology

What material has made computer chip production more economical?

(a) aluminum. (b) silicon. (c) gold. (d) platinum.

Computer Science & Information Technology

In Access, you can sort on multiple fields

Indicate whether the statement is true or false

Computer Science & Information Technology

CSS style sheets control the way the page content is displayed across the grids.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology