| .CHDIR Statement Programming Example. |
|
  QuickSCREEN       Details      Example       Contents       Index |
| ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ |
| CHDIR Statement Programming Example |
|
| Example 1 |
|   |
| ' Makes \\HOME\\SALES the current directory on the default |
| ' drive. |
| CHDIR "\\HOME\\SALES" |
|   |
| Example 2 |
|   |
| ' Changes the current directory to USERS on drive B; it does |
| ' not, however, change the default drive to B. |
| CHDIR "B:USERS" |
|   |