141k views
0 votes
Which of the following is a true statement? a. To have the computer close the current form when the user clicks the Exit button, the Me.Close() statement should be entered in a button’s Click event procedure . b. The title bar cannot be removed from an application. c. By default, the size of a form cannot be changed by a user while an application is running. d. The Minimize button can be removed from the title bar without removing the Maximize button from the title bar.

User Jackhao
by
5.1k points

1 Answer

2 votes

Answer: a)To have the computer close the current form when the user clicks the Exit button, the Me.Close() statement should be entered in a button’s Click event procedure

Explanation: Me.close() statement is used for the assuring that execution of the program has stopped along with stopped computer event.This statement is puts the current form into the form.closing.

Other statements are incorrect because title bar can be vanished from application,size of the form can be change while execution of application and both minimize and maximize button are in the form of set and can be removed togather only .Thus, the correct option is option(a)

User Jeff Doolittle
by
5.6k points