Sys(2800)
This function, added in Service Pack 4 for VFP 6 and enhanced in VFP 7, changes the way VFP interacts with Active Accessibility.
Usage |
cAAStatus = SYS( 2800 [, nAAFlag ] ) |
Parameter |
Value |
Meaning |
nAAFlag |
Omitted |
The function returns the current status. |
Numeric |
The current status is changed and the new status returned. Potential values are described in the table, below. |
|
cAAStatus |
Character |
The current Active Accessibility status. See the potential values for nAAFlag for its interpretation. |
Value |
Meaning |
0 |
Disable Active Accessibility. |
1 |
Enables the WM_GETOBJECT message for Active Accessibility to get information about an object. |
2 |
Enables the NotifyWinEvent function to tell Active Accessibility to respond to events. |
4 |
Tells Active Accessibility to wait until VFP has finished processing certain requests before returning control to the client program (most likely, an accessibility aid). |
16 |
Tells Active Accessibility to put the Name of a control into the accName property rather than its caption. |
32 |
Creates a fake caret that can be used by accessibility clients to determine the current location. Not recommended in VFP 7 and later. |
Example |
* Turn off Active Accessibility SYS(2800, 0) |
See Also |