You can remove a control from a control layout in a report just like you can for a form. Display the report in ____ view, click the control to select it, right-click the control to open the shortcut menu, point to Layout, and then click Remove Layout.
A. Format
B. Layout
C. Design
D. Data
Answer: B
You might also like to view...
A client program makes a connection to a server program by calling
A. socket B. connect
Missing images might not display if saved as a:
a. PNG, b. JPEG c. BMP d. GIF
Smartphones, tablet computers, laptops, and desktop computers are all capable of participating in cloud computing
Indicate whether the statement is true or false
Find the error(s) in each of the following and explain how to correct it (them):
a) Assume the following prototype is declared in class Time: ``` void ~Time( int ); ``` b) The following is a partial definition of class Time: ``` class Time { public: // function prototypes private: int hour = 0; int minute = 0; int second = 0; }; // end class Time ``` c) Assume the following prototype is declared in class Employee: ``` int Employee( string, string ); ```