Files
MBS/PROYECTO/ccdir/prfmmt012.per
T

43 lines
1.2 KiB
Plaintext

{
=============================================================================
Formulario : ccfmrp014
Objetivo : Captura de valores para impresion del estado de
cuenta de un cliente. (Historial)
Programa : ccprrp014
Autor : Tadeo A. Ferreas
Fecha : Julio 28, 1993
=============================================================================
}
database Smarmotech
LAYOUT (TEXT="ccprrp003 Analisis Saldos",STYLE="basic")
GRID
{
Cliente [c1]-[c2 ]
Prima [pr ]
Fecha Inicial [a ]
Fecha Final [b ]
0 50 100
[p000 ]
}
end
tables
cctb00001
attributes
PROGRESSBAR p000 = formonly.progreso,VALUEMIN=0,VALUEMAX=100,COLOR=GREEN;
c1 = cctb00001.tipo_cliente,autonext;
c2 = cctb00001.sec_cliente;
a = formonly.fecha_inicial type date, format = "dd/mm/yyyy",autonext,
comments = "Fecha Inicial del Rango ";
b = formonly.fecha_final type date, format = "dd/mm/yyyy",autonext,
comments = "Fecha final del recibo de pago";
pr = formonly.prima,comments= "Introduzca Prima Para Valorizar Estados";
end