Which of the following is NOT true in regard to working with ACCDE files?
A) Forms and reports can be opened but not edited in .accde versions of a database.
B) In an .accde file, VBA procedures will not be viewable to the user.
C) Any errors that might occur during the execution of a VBA procedure will not result in the Visual Basic Editor being displayed.
D) The ACCDE format, with additional security measures, allows for full editing of the database by the user.
D
You might also like to view...
When using the Content Control Properties dialog box to add a Drop-Down List content control item, the ________ is the text that will display to users when they view the list
A) display name B) Title C) Tag D) value
Which of the following is true about this code?
Suppose Animal is an interface that specifies a single method – speak. Now suppose the Dog class implements the Animal interface. In addition to the speak method, the Dog class also has a method called wagTail. Now consider the following code. ``` Animal a = new Dog(); a.wagTail(); ``` a) It will result in a compile-time error. b) It will result in a run-time error. c) It will call the speak method defined in the Animal interface. d) It will call the wagTail method defined in the Dog class. e) none of the above are true.