SP_SLS_BQUERY

SLS_BQUERY()

  Short:
  ------
 SLS_BQUERY() Sets SuperLib global query block

 Returns
 <bSetting> => Current value of the setting

 Syntax
 SLS_BQUERY([bNew])

 Function                   Setting                     Default
 --------------------------------------------------------------
 SLS_BQUERY([bNew])         Query codeblock            {||.t.}
                            set by QUERY()

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

 THIS IS MAINLY FOR INTERNAL USE BY SUPERLIB

 Examples

  SLS_BQUERY({||"R"$lname})

 Source: S_GLOBAL.PRG

 

SP_SLSF_TODO

SLSF_TODO()

  Short:
  ------
 SLSF_TODO() Sets and retrieves the file name and path for the
 TODOLIST() DBF files

 Returns
 <cFileSpec>  => File path and name less extension

 Syntax
 SLSF_TODO([cNew])
 SLSF_TDN1([cNew])
 SLSF_TDN2([cNew])
 SLSF_TDN3([cNew])

 Description

 [cNew] optionally sets the path and/or filename.

 If [cNew] is passed, this is the value returned as well.

 Examples
  USE (SLSF_TODO() ) index SLSF_TDN1(),SLSF_TDN2(),SLSF_TDN3()
                                          // open the files

  SLSF_TODO("c:\hidden\XYZ123")         // sets the filespec
                                          // to XYZ123.DBF in
                                          // c:\HIDDEN

 Source: S_PATHS.PRG

 

SP_SLSF_SCROLL

SLSF_SCROLL()

  Short:
  ------
 SLSF_SCROLL() Sets and retrieves the file name and path for the
 SCROLLER() DBF file

 Returns
 <cFileSpec>  => File path and name less extension

 Syntax
 SLSF_SCROLL([cNew])

 Description

 [cNew] optionally sets the path and/or filename.

 If [cNew] is passed, this is the value returned as well.

 Examples
  USE (SLSF_SCROLL() )                    // open the file

  SLSF_SCROLL("c:\hidden\XYZ123")         // sets the filespec
                                          // to XYZ123.DBF in
                                          // c:\HIDDEN

 Source: S_PATHS.PRG

 

SP_SLSF_REPORT

SLSF_REPORT()

  Short:
  ------
 SLSF_REPORT() Sets and retrieves the file name and path for the
 REPORTER() DBF file

 Returns
 <cFileSpec>  => File path and name less extension

 Syntax
 SLSF_REPORT([cNew])

 Description

 [cNew] optionally sets the path and/or filename.

 If [cNew] is passed, this is the value returned as well.

 Examples
  USE (SLSF_REPORT() )                    // open the file

  SLSF_REPORT("c:\hidden\XYZ123")         // sets the filespec
                                          // to XYZ123.DBF in
                                          // c:\HIDDEN

 Source: S_PATHS.PRG

 

SP_SLSF_QUERY

()

  Short:
  ------
 SLSF_QUERY() Sets and retrieves the file name and path for the
 QUERY() DBF file

 Returns
 <cFileSpec>  => File path and name less extension

 Syntax
 SLSF_QUERY([cNew])

 Description

 [cNew] optionally sets the path and/or filename.

 If [cNew] is passed, this is the value returned as well.

 Examples
  USE (SLSF_QUERY() )                    // open the file

  SLSF_QUERY("c:\hidden\XYZ123")         // sets the filespec
                                          // to XYZ123.DBF in
                                          // c:\HIDDEN

 Source: S_PATHS.PRG