Ctrl+Delete Removes a Session Ctrl+Left and Right Move to previous/next non-blank session for the project Shift+Left and Right Resize columns Ctrl+Q Clears All Sessions Before the Date the Cursor is on Home Go Back to the Current Project Today Right-Click on Session Performs a Report of Outcomes, Interviewers or Sessions for that Project Save Save Changes to Any Cells 30 days Old or Newer Cancel Revert to Original Table (Discard Any Changes)
| Field Name | Field Type | Length | Description |
|---|---|---|---|
| ORDER | NUMERIC | 9 with 3 decimals | Sets the menu row this item is displayed on |
| CAPTION | CHARACTER | 100 | This is the text that appears on the menu |
| ACTION | CHARACTER | 200 | This is the command that is executed when the user chooses this menu item |
| MONIPASS | CHARACTER | 50 | The password required to monitor the job launched by this menu item (encrypted - see Monitor a Station for details) |
| VISIBLE | LOGICAL | 1 | Sets whether this menu item is visible on the screen |
| ENABLED | LOGICAL | 1 | Sets whether this menu item is accessible or greyed out |
| AUTORUN | LOGICAL | 1 | Sets whether this menu item is automatically launched when the menu is loaded by WinMenu |
eg. WinMenu -l -k -pmj -t600 "shutdown.exe -l"would left-align menu items, keep the Windows taskbar on-screen, set a password to exit of "mj" and an inactivity timeout of 10 minutes before a shutdown command is run.
| File Path and Name | Description |
|---|---|
| F:\DKFiles\macstpls\Calls_Listing.tpl | Plain Text Calls File Listing |
| F:\DKFiles\macstpls\Calls_Listing_rtf.tpl | Rich Text Calls File Listing |
| F:\DKFiles\macstpls\Calls_Listing_htm.tpl | HTML Calls File Listing |
| F:\DKFiles\macstpls\Sample_Listing.tpl | Plain Text Simple Sample File Listing |
| F:\DKFiles\macstpls\Sample_Listing_rtf.tpl | Rich Text Simple Sample File Listing |
| F:\DKFiles\macstpls\Sample_Listing_htm.tpl | HTML Simple Sample File Listing |
| F:\DKFiles\macstpls\Sample_Listing_Detailed.tpl | Plain Text Detailed Sample File Listing |
| F:\DKFiles\macstpls\Sample_Listing_Detailed_rtf.tpl | Rich Text Detailed Sample File Listing |
| F:\DKFiles\macstpls\Sample_Listing_Detailed_htm.tpl | HTML Detailed Sample File Listing |
| Status | Meaning |
|---|---|
| 0 | Fresh |
| 1 | Finished With (Complete, Refused...) |
| 2 | Appointment |
| 3 | Held Up Fresh |
| 4 | Being Interviewed |
| 5 | Held Up Appointment |
| 7 | Internal Fresh Pending Release |
| 9 | Internal Appointment Pending Release |
'CORNWALL' $ UPPER(DKDATA5)
QREGION 7
IF(STATUS=2,'A','Z')+DTOS(APPT_DATE)+APPT_TIME+STR(PRIORITY)When the index order is set for retrieving appointments, the sample file is positioned on the first record in that order, and each one is checked for viability against the type 3 quotas (if there are any) and, if its appointment time and date are before now, it automatically selects the sample record with the most urgent priority. You will need exclusive access to the sample file with ViewDBFWin.exe in order to create the alternative appointment fetching indexes. When creating an alternative index order for appointments, you should start the expression with IF(STATUS=2,'A','Z')+... so that appointment records are at the top of the list. As soon as a non-STATUS 2 record is encountered, checking for appointments stops.
STATUSWhen the index order is set for retrieving fresh sample, the sample file is positioned on the first record in that order, and returned as the next fresh sample record, if its STATUS field is zero or blank. You will need exclusive access to the sample file with ViewDBFWin.exe in order to create the alternative fresh sample fetching indexes. When creating an alternative index order for fresh sample, you should start the expression with IF(STATUS=0,'A','Z')+... so that fresh sample records are at the top of the list. As soon as a non-STATUS 0 record is encountered, checking for fresh sample stops.