Ver Mensaje Individual
  #2 (permalink)  
Antiguo 22/06/2007, 05:40
fero
 
Fecha de Ingreso: mayo-2007
Mensajes: 74
Antigüedad: 17 años
Puntos: 1
Re: ajustar campos numerios en listado

txt_imp1_fmt = Format$(txt_importe1, "###,###,##0.00")
txt_imp2_fmt = Format$(txt_importe2, "###,###,##0.00")

Printer.Print Tab(12); txt_cg1;
Printer.Print Tab(100); Space(14 - Len(txt_imp1_fmt)); txt_imp1_fmt
Printer.Print Tab(12); txt_cg2;
Printer.Print Tab(100); Space(14 - Len(txt_imp2_fmt)); txt_imp2_fmt