_TaskList, _FoxTask
These system variables, new in VFP 7, reference the Task List manager application and the Task List table, respectively.
Usage |
_TASKLIST = cTaskListApplication cTaskListApplication = _TASKLIST _FOXTASK = cTaskTable cTaskTable = _FOXTASK |
Parameter |
Value |
Meaning |
cTaskListApplication |
Character |
The filename, including path, of the application that manages the task list. By default, HOME() + "TaskList.APP". |
cTaskTable |
Character |
The filename, including path, of the table containing tasks. By default, "FoxTask.DBF" in the user's Visual FoxPro profile directory. (In Windows 2000, "C:\Documents and Settings\<user name>\Application Data\Microsoft\Visual FoxPro".) |
Example |
_FOXTASK = HOME() + "Tasks.DBF" DO (_TASKLIST) |
See Also |