SP_SLS_PRNC

SLS_PRNC()

  Short:
  ------
 SLS_PRNC() A Superlib printer setting function

 Returns
 <lSetting> => Current value of the setting

 Syntax
 SLS_PRNC([lNew])

 Function                   Setting                     Default
 --------------------------------------------------------------
 SLS_PRNC([lNew])           Check printer ready         .T.
                            (set to .f. on
                            a network)
 [lNew] sets the setting to a new setting
 If [lNew] is passed, the setting is changed and the
 new setting is returned.


 Examples

  SLS_PRNC(.f.)        //  DO NOT DO A HARDWARE PRINTER READY CHECK

 Notes:

 Source: S_GLOBAL.PRG

 

SP_SLS_PRN

SLS_PRN()

  Short:
  ------
 SLS_PRN() A Superlib printer setting function

 Returns
 <cSetting> => Current value of the setting

 Syntax
 SLS_PRN([cNew])

 Function                   Setting                     Default
 --------------------------------------------------------------
 SLS_PRN([cNew])            Default printer             'LPT1'

 [cNew] sets the setting to a new setting
 If [cNew] is passed, the setting is changed and the
 new setting is returned.

 Examples

  SLS_PRN("LPT2")
  SET PRINTER TO (SLS_PRN())

 Notes:

 Source: S_GLOBAL.PRG