Files correlati : Ricompilazione Demo : [ ] Commento : 0001678: 002659 - controllo qualità - richiesta parametri stampe tabelle cespiti Descrizione le maschere di richesta parametri delle stampe delle tabelle comuni dei cespiti sono old style git-svn-id: svn://10.65.10.50/branches/R_10_00@21823 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			55 lines
		
	
	
		
			899 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			899 B
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
| //definizione  maschera per stampa tabella tipi movimento cespiti
 | |
| #include "cesttmc.h"
 | |
| 
 | |
| PAGE "Stampa Tipi movimento cespiti" -1 -1 78 6
 | |
| 
 | |
| STRING F_INIZIO 1
 | |
| BEGIN
 | |
|    PROMPT 2 2 "Da tipo movimento "
 | |
|    FLAGS "U"
 | |
|    FIELD CODTAB
 | |
|    USE %TMC KEY 1
 | |
|    INPUT CODTAB F_INIZIO
 | |
|    DISPLAY "Tipo movimento" CODTAB
 | |
|    DISPLAY "Descrizione@50" S0
 | |
|    OUTPUT F_INIZIO CODTAB
 | |
|    OUTPUT F_D_INIZIO S0
 | |
|    GROUP 1
 | |
|    CHEKCTYPE NORMAL
 | |
| END
 | |
| 
 | |
| STRING F_D_INIZIO 50
 | |
| BEGIN
 | |
|    PROMPT 25 2 ""
 | |
|    FLAGS "D"
 | |
| END
 | |
| 
 | |
| STRING F_FINE 1
 | |
| BEGIN
 | |
|    PROMPT 2 3 "A tipo movimento  "
 | |
|    FLAGS "U"
 | |
|    FIELD CODTAB
 | |
|    USE %TMC KEY 1
 | |
|    INPUT CODTAB F_FINE
 | |
|    DISPLAY "Tipo movimento" CODTAB
 | |
|    DISPLAY "Descrizione@50" S0
 | |
|    OUTPUT F_FINE CODTAB
 | |
|    OUTPUT F_D_FINE S0
 | |
|    GROUP 2
 | |
|    CHECKTYPE NORMAL
 | |
| END
 | |
|        
 | |
| STRING F_D_FINE 50
 | |
| BEGIN
 | |
|    PROMPT 25 3 ""
 | |
|    FLAGS "D"
 | |
| END
 | |
| 
 | |
| ENDPAGE
 | |
| 
 | |
| TOOLBAR "bottom" 0 0 0 2
 | |
| #include <printbar.h>
 | |
| ENDPAGE
 | |
| 
 | |
| ENDMASK
 |