Which of the following is NOT true regarding the FileDialog object properties?

A) The Open option allows the user to select one or more files that can be opened in the Object Browser.
B) The FolderPicker option allows the user to select a path (folder). The file path text is stored in the SelectedItems method of the FileDialog object.
C) The FilePicker option allows the user to select one or more files. The file paths are stored in the SelectedItems method of the FileDialog object.
D) The SaveAs option allows the user to select a single file that can then be used to save the current file.


A

Computer Science & Information Technology

You might also like to view...

The function int fact(int k) { return k*fact(k-1); if (k==0) return 1; }

A) computes the factorial on an integer k passed to it as parameter. B) returns the value 1 if it is passed a value of 0 for the parameter k. C) does not correctly handle its base case. D) works for all non-negative values of k, but not for negative numbers. E) None of the above

Computer Science & Information Technology

A PHP function that calls itself is known as a _________ function.

a. local b. recursive c. global d. return

Computer Science & Information Technology

The most widespread wireless channel for communication networks is radio frequency (RF) signals.

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

Computer Science & Information Technology

Data can be changed in Report view.

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

Computer Science & Information Technology