When a relationship exists between two tables, the Form wizard automatically includes a(n) ________

Fill in the blank(s) with correct word

subform

Computer Science & Information Technology

You might also like to view...

A user creates a file in presentation software to be shown on a widescreen display. The user would like to adjust the aspect ratio of the slides in the presentation software so they display without extra black areas on the top, bottom, left, or right of the slides. Which of the following aspect ratios would BEST meet this requirement?

A. 4:3 B. 5:4 C. 16:9 D. 256:135

Computer Science & Information Technology

What two numbers are displayed in the list box when the button is clicked on?

``` Dim nums(2) as Integer Private Sub frmNumbers_Load(...) Handles MyBase.Load nums(0) = 5 nums(1) = 3 nums(2) = 4 End Sub Private Sub btnDisplay_Click(...) Handles btnDisplay.Click lstBox.Items.Add(nums.Average) lstBox.Items.Add(nums.Max) End Sub ``` (A) 4 and 5 (B) 4 and 4 (C) 3 and 5 (D) 3 and 4

Computer Science & Information Technology