Files correlati : Ricompilazione Demo : [ ] Commento :aggiunte maschere e report di stampa per attrezzature e risorse git-svn-id: svn://10.65.10.50/trunk@13152 c028cbd2-c16b-5b4b-a496-9718f37d4682
39 lines
697 B
Plaintext
Executable File
39 lines
697 B
Plaintext
Executable File
#include "../ba/ba3200.h"
|
|
|
|
PAGE "Stampa Attrezzature" -1 -1 50 8
|
|
STRING F_INIZIO1 16
|
|
BEGIN
|
|
PROMPT 2 1 "Da codice "
|
|
FLAGS "U"
|
|
HELP "Inserire il codice da cui iniziare la stampa. Se in bianco vuol dire dall'inizio"
|
|
USE ATR
|
|
INPUT CODTAB F_INIZIO1
|
|
DISPLAY "Cod. attrezzatura" CODTAB
|
|
DISPLAY "Descrizione@50" S0
|
|
OUTPUT F_INIZIO1 CODTAB
|
|
END
|
|
|
|
STRING F_FINE1 16
|
|
BEGIN
|
|
PROMPT 2 3 "A codice "
|
|
FLAGS "U"
|
|
HELP "Inserire il codice di fine. Se in bianco vuol dire l'ultimo"
|
|
COPY USE F_INIZIO1
|
|
INPUT CODTAB F_FINE1
|
|
COPY DISPLAY F_INIZIO1
|
|
OUTPUT F_FINE1 CODTAB
|
|
END
|
|
|
|
BUTTON DLG_OK 10 2
|
|
BEGIN
|
|
PROMPT -12 -1 ""
|
|
END
|
|
|
|
BUTTON DLG_QUIT 10 2
|
|
BEGIN
|
|
PROMPT -22 -1 ""
|
|
END
|
|
|
|
ENDPAGE
|
|
ENDMASK
|