Some has to go...
- Silvio.Falconi
- Posts: 7114
- Joined: Thu Oct 18, 2012 7:17 pm
Some has to go...
Someone has to go and take the train and go away?
Good, You must not forget to see the board timetable of trains departing made with Tled class
Good Week End to All !!!
Good, You must not forget to see the board timetable of trains departing made with Tled class
Good Week End to All !!!
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
- Antonio Linares
- Site Admin
- Posts: 42414
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 12 times
- Been thanked: 48 times
- Contact:
- Silvio.Falconi
- Posts: 7114
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Some has to go...
thanks but the blink not run also...
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
- Antonio Linares
- Site Admin
- Posts: 42414
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 12 times
- Been thanked: 48 times
- Contact:
- Silvio.Falconi
- Posts: 7114
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Some has to go...
mhm....
While I'm thinking to where is the error... you can go to a Coffee Bar and take a hot cup of Coffee, don't forget to pay ....on cash register....
there is a ----Tled cash Register Tower ...
While I'm thinking to where is the error... you can go to a Coffee Bar and take a hot cup of Coffee, don't forget to pay ....on cash register....
there is a ----Tled cash Register Tower ...
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
- Silvio.Falconi
- Posts: 7114
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Some has to go...
Maybe..
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
Re: Some has to go...
Silvio,
why not using a TTF - DIGITAL-font ( just a style-sample ) ?
There a some different styles possible like :
Any style You like ( just a few )
Best Regards
Uwe
why not using a TTF - DIGITAL-font ( just a style-sample ) ?
There a some different styles possible like :
Any style You like ( just a few )
Best Regards
Uwe
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
i work with FW.
If you have any questions about special functions, maybe i can help.
- DARWIN UZCATEGUI
- Posts: 5
- Joined: Tue Apr 09, 2013 7:37 pm
- Location: Catia la Mar Edo Vargas - Venezuela
- Contact:
Re: Some has to go... TTF - DIGITAL-font
#include "FiveWin.ch"
static oWnd
//----------------------------------------------------------------------------//
function Main()
local oTmr, oSay, oFnt
DEFINE FONT oFnt NAME "Advanced Dot Digital-7" SIZE 0, -30
DEFINE WINDOW oWnd TITLE "Prueba"
@ 2, 2 SAY oSay PROMPT "Venezuela Caracas GM "+time() COLOR "GR+/W*" FONT oFnt SIZE 450, 150
DEFINE TIMER oTmr INTERVAL 700 ACTION ChangeColor( oSay ) OF oWnd
ACTIVATE TIMER oTmr
ACTIVATE WINDOW oWnd
oFnt:End()
return nil
//----------------------------------------------------------------------------//
function ChangeColor( oSay )
static lStatus := .F.
static lStatus1 := .F.
if lStatus
oSay:SetColor( "GR+/W*" )
else
oSay:SetColor( "b+/W*" )
endif
oSay:Refresh()
lStatus = ! lStatus
lStatus1 = ! lStatus
return nil
//----------------------------------------------------------------------------//
static oWnd
//----------------------------------------------------------------------------//
function Main()
local oTmr, oSay, oFnt
DEFINE FONT oFnt NAME "Advanced Dot Digital-7" SIZE 0, -30
DEFINE WINDOW oWnd TITLE "Prueba"
@ 2, 2 SAY oSay PROMPT "Venezuela Caracas GM "+time() COLOR "GR+/W*" FONT oFnt SIZE 450, 150
DEFINE TIMER oTmr INTERVAL 700 ACTION ChangeColor( oSay ) OF oWnd
ACTIVATE TIMER oTmr
ACTIVATE WINDOW oWnd
oFnt:End()
return nil
//----------------------------------------------------------------------------//
function ChangeColor( oSay )
static lStatus := .F.
static lStatus1 := .F.
if lStatus
oSay:SetColor( "GR+/W*" )
else
oSay:SetColor( "b+/W*" )
endif
oSay:Refresh()
lStatus = ! lStatus
lStatus1 = ! lStatus
return nil
//----------------------------------------------------------------------------//
Re: Some has to go...
Ji,ji,ji... buena la cosa... "all you need is code"
http://www.xdata.cl - Desarrollo Inteligente
----------
Asus TUF F15, 32GB Ram, 2 * 1 TB NVME M.2, GTX 1650
http://www.xdata.cl - Desarrollo Inteligente
----------
Asus TUF F15, 32GB Ram, 2 * 1 TB NVME M.2, GTX 1650
Re: Some has to go...
Very Good
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
- Antonio Linares
- Site Admin
- Posts: 42414
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 12 times
- Been thanked: 48 times
- Contact:
- Silvio.Falconi
- Posts: 7114
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Some has to go...
Uwe,
because...... I not use F O N T BUT I draw the letter by letter
as on the oldest ca-clipper
because...... I not use F O N T BUT I draw the letter by letter
as on the oldest ca-clipper
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
- Antonio Linares
- Site Admin
- Posts: 42414
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 12 times
- Been thanked: 48 times
- Contact:
- Silvio.Falconi
- Posts: 7114
- Joined: Thu Oct 18, 2012 7:17 pm
Re: Some has to go...
@ 10,10 LED oLed OF OWND ;
SIZE 400,80 ;
BORDER ;
BORDERCOLOR CLR_BLACK ;
BORDERLINE 2 ;
BACKCOLOR CLR_HRED ;
LEDON CLR_GREEN ;
LEDOFF CLR_WHITE ;
LEDSPACE 3 PIXEL
oLed:cTextLinea1:= "Antonio Linares"
oLed:cTextLinea2:= "from MARBELLA"
IT' ' NO EASY ?
SIZE 400,80 ;
BORDER ;
BORDERCOLOR CLR_BLACK ;
BORDERLINE 2 ;
BACKCOLOR CLR_HRED ;
LEDON CLR_GREEN ;
LEDOFF CLR_WHITE ;
LEDSPACE 3 PIXEL
oLed:cTextLinea1:= "Antonio Linares"
oLed:cTextLinea2:= "from MARBELLA"
IT' ' NO EASY ?
Since from 1991/1992 ( fw for clipper Rel. 14.4 - Momos)
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com
I use : FiveWin for Harbour November 2023 - January 2024 - Harbour 3.2.0dev (harbour_bcc770_32_20240309) - Bcc7.70 - xMate ver. 1.15.3 - PellesC - mail: silvio[dot]falconi[at]gmail[dot]com