PRB: Calling APRINTERS Function Causes Feature Not AvailableLast reviewed: June 12, 1996Article ID: Q152297 |
The information in this article applies to:
SYMPTOMSWhen a program calls the APRINTERS() function to place the names of printers currently installed into a memory variable array, Visual FoxPro generates the error number 1001 "Feature not Available."
CAUSEThis function is supported on the Windows platform only. The APRINTERS() function makes a call to the operating system to return the information about mounted printers. The Macintosh operating system does not provide this information. Thus, the APRINTERS function is not available in Visual FoxPro for Macintosh.
STATUSThis behavior is by design.
WORKAROUNDIf you are writing a cross-platform application, you can build a conditional structure that only includes calls to the APRINTERS function if you are running on the Windows platform. For example:
DO CASE CASE _WINDOWS <include your commands here> CASE _MAC <get information about the current printer> ENDCASE |
Additional reference words: 3.00b VFoxmac
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |