Hola Amigos:
Necesito saber si existe la posibilidad de mostrar el total de una factura con numero detacados (Mas grandes) en la pantalla, lo he visto en el pantallas del foro, pero como puedo hacerlo en Fivewin 2.4 y Blinker 7.0
Saludos,
Miguel
Favor Ayuda
-
- Posts: 117
- Joined: Sun Oct 01, 2006 11:39 pm
- Antonio Linares
- Site Admin
- Posts: 42450
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 20 times
- Been thanked: 58 times
- Contact:
Code: Select all | Expand
#include "FiveWin.ch"
function Main()
local oWnd, fntArial
DEFINE WINDOW oWnd FROM 1, 1 TO 20, 80 ;
TITLE "Testing Fonts"
DEFINE FONT fntArial NAME "Arial" SIZE 0, -25
@ 2, 2 SAY "Hello world" FONT fntArial SIZE 180, 80
ACTIVATE WINDOW oWnd MAXIMIZED
fntArial:End()
return nil