* bin/commit.hb
* config/detect.mk
* config/detfun.mk
* config/detplat.mk
* config/dir.mk
* config/dirsh.mk
* config/global.mk
* config/globsh.mk
* config/instsh.mk
* config/lang.hb
* config/lang2po.hb
* config/po2lang.hb
* config/postinst.hb
* contrib/hbexpat/tests/tohash.prg
* contrib/hbformat/utils/hbformat.ini
* contrib/hbmisc/hbedit.prg
* contrib/hbmxml/tests/testmxml.prg
* contrib/hbnetio/utils/hbnetio/_console.prg
* contrib/hbnetio/utils/hbnetio/_winsvc.prg
* contrib/hbnetio/utils/hbnetio/hbnetio.prg
* contrib/hbnetio/utils/hbnetio/netiomgm.hb
* contrib/hbwin/tests/ole.prg
* contrib/hbwin/tests/oletst2.js
* contrib/hbwin/tests/oletst2.vbs
* contrib/hbxpp/doc/en/binnumx.txt
* contrib/hbxpp/doc/en/dbcmdx.txt
* contrib/xhb/htmutil.prg
* contrib/xhb/tfile.prg
* contrib/xhb/tframe.prg
* contrib/xhb/thtm.prg
* ChangeLog.txt
* debian/copyright
* doc/class_tp.txt
* doc/hdr_tpl.txt
* doc/xhb-diff.txt
* LICENSE.txt
* package/harbour-wce.spec.in
* package/harbour-win.spec.in
* package/harbour.spec
* package/mpkg_rpm_wce.sh
* package/mpkg_rpm_win.sh
* package/mpkg_rpm.sh
* package/mpkg_src.sh
* package/mpkg_ver.sh
* src/rtl/achoice.prg
* src/rtl/getsys53.prg
* src/rtl/tgetlist.prg
* src/rtl/tlabel.prg
* src/rtl/tmenusys.prg
* tests/hbdoc.prg
* tests/langmsg.prg
* tests/rto_get.prg
* tests/rto_tb.prg
+ doc/en/ati.txt
+ doc/en/dirdrive.txt
+ doc/en/hashfunc.txt
+ doc/en/hbtoken.txt
+ doc/en/left.txt
+ doc/en/proc.txt
+ doc/en/strtran.txt
+ doc/en/transfrm.txt
+ doc/en/typefile.txt
* doc/en/*
* more partial sync with 3.4 fork
68 lines
2.3 KiB
Plaintext
68 lines
2.3 KiB
Plaintext
/* $DOC$
|
|
$AUTHOR$
|
|
Copyright 1999 Luiz Rafael Culik <culik@sl.conex.net>
|
|
$TEMPLATE$
|
|
Command
|
|
$NAME$
|
|
LABEL FORM
|
|
$CATEGORY$
|
|
Command
|
|
$SUBCATEGORY$
|
|
Legacy
|
|
$ONELINER$
|
|
Displays labels to the screen or an alternate device
|
|
$SYNTAX$
|
|
LABEL FORM <cLabelName> [TO PRINTER] [TO FILE <cFile>] [<cScope>]
|
|
[WHILE <bWhile> ] [FOR <bFor> ] [SAMPLE] [NOCONSOLE]
|
|
$ARGUMENTS$
|
|
<cLabelName> Name of label file
|
|
<cFile> Name of an alternate file
|
|
<cScope> Expression of a scoping condition
|
|
<bWhile> WHILE condition
|
|
<bFor> FOR condition
|
|
$DESCRIPTION$
|
|
This command allows labels to be printed based on the format
|
|
outlined in LBL file specified as <cLabelName>. By default, output
|
|
will go to the screen however this output may be rerouted with
|
|
either the `TO PRINTER` or the `TO FILE` clause.
|
|
|
|
If the `TO FILE` clause is specified, the name of the ASCII text file
|
|
containing the generated labels will be <cFile>.
|
|
|
|
If no file extension is specified a .txt extension is added.
|
|
<cScope> is the scope condition for this command. Valid scopes
|
|
include `NEXT <expN>` (number of records to be displayed, where <expN>
|
|
is the number of records), `RECORD <expN>` (a specific record to be
|
|
printed), REST (all records starting from the current record
|
|
position, and ALL (all records). The default is ALL.
|
|
|
|
Both logical expression may work ill conjunction with one another
|
|
where <bFor> is the logical expression for the FOR condition (for
|
|
records to be displayed within a given value range) and <bWhile> for
|
|
the WHILE condition (for records to be displayed until they fail to
|
|
meet the condition).
|
|
|
|
If the SAMPLE clause is specified, test labels will be generated.
|
|
|
|
If the NOCONSOLE clause is specified, the console will be turned off
|
|
while this command is being executed.
|
|
|
|
This command follows the search criteria outlined in the `SET PATH TO`
|
|
command. The path may be specified, along, with (the drive letter,
|
|
in <cLabelName>
|
|
$EXAMPLES$
|
|
USE test NEW
|
|
LABEL FORM test.lbl
|
|
$STATUS$
|
|
R
|
|
$COMPLIANCE$
|
|
C
|
|
$PLATFORMS$
|
|
All
|
|
$FILES$
|
|
Library is core
|
|
$SEEALSO$
|
|
REPORT FORM
|
|
$END$
|
|
*/
|