April 2004
Beginner
416 pages
11h 3m
English
Q. | To prevent errors when either creating or deleting folders, what should you do prior to executing the command? |
A. | You should always check for the existence of the folder prior to trying to either delete or create the folder. To do this, use the FolderExists command inside an If...Then...Else construction. |
Q. | What is used to bind to a folder? |
A. | To bind to a folder, you use the GetFolder method. |
Q. | Why do you need to bind to a folder? |
A. | You must bind to a folder because folders are COM objects, and prior to accessing the properties of the folder, you need an object reference. Creating this reference is called binding. |
Q. | What command is used to create a folder? |
A. | The CreateFolder command is used to create a folder. |
Q. | What command is used to ... |