Search found 22 matches: escapement

Return to advanced search

Re: TPRINTER

Hi.
I had the same problem years ago and I solved using for that pages the print using fonts with escapement at 900.
It's an hard work, I know, but is the only solution I found.
Happy sunday.
by Massimo Linossi
Sun Jul 20, 2014 7:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TPRINTER
Replies: 18
Views: 2302

Re: Trying to use SAY + FONT with Escapement

Thanks, This works ;)
by vilian
Fri Aug 24, 2012 6:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to use SAY + FONT with Escapement
Replies: 6
Views: 2396

Re: Trying to use SAY + FONT with Escapement

dear Vilian, Try this : #include "FiveWin.ch"FUNCTION Main()LOCAL oWnd,oSay[3],oFont[2]      DEFINE FONT oFont[1] NAME "ARIAL" SIZE 0,20 BOLD;               NESCAPEMENT 900                    DEFINE WINDOW oWnd ;//FROM 1,5 TO 20,65;          TITLE ...
by kok joek hoa
Fri Aug 24, 2012 3:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to use SAY + FONT with Escapement
Replies: 6
Views: 2396

Re: Trying to use SAY + FONT with Escapement

Kok,

Thus the text comes out with the correct alignment, but you're not using SAY mode DESIGN
by vilian
Fri Aug 24, 2012 1:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to use SAY + FONT with Escapement
Replies: 6
Views: 2396

Re: Trying to use SAY + FONT with Escapement

Hi Vilian, try this : #include "FiveWin.ch"FUNCTION Main()LOCAL oWnd,oSay[3],oFont[2]   DEFINE FONT oFont[1] NAME "ARIAL" SIZE 0,20 BOLD;               NESCAPEMENT 900                    DEFINE WINDOW oWnd ;//FROM 1,5 TO 20,65;          TITLE "...
by kok joek hoa
Fri Aug 24, 2012 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to use SAY + FONT with Escapement
Replies: 6
Views: 2396

Re: Trying to use SAY + FONT with Escapement

Thanks for the reply, But with NESCAPEMENT -900 text is displayed like this:

Image

Need to display like this:

Image
by vilian
Fri Aug 24, 2012 11:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to use SAY + FONT with Escapement
Replies: 6
Views: 2396

Re: Trying to use SAY + FONT with Escapement

Hi Vilian, Try this : #include "FiveWin.ch"FUNCTION Main()LOCAL oWnd,oSay[3],oFont[2]   DEFINE FONT oFont[1] NAME "ARIAL" SIZE 0,20 BOLD;               NESCAPEMENT -900                     DEFINE WINDOW oWnd FROM 1,5 TO 20,65;          TITLE "...
by kok joek hoa
Fri Aug 24, 2012 9:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to use SAY + FONT with Escapement
Replies: 6
Views: 2396

Trying to use SAY + FONT with Escapement

Hi, I'm trying to use SAY + FONT with Escapement, ​​but the text is not displayed properly! Can anyone help me? #include "FiveWin.ch"FUNCTION Main()LOCAL oWnd,oSay[3],oFont[2]   DEFINE FONT oFont[1] ...
by vilian
Wed Aug 22, 2012 8:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to use SAY + FONT with Escapement
Replies: 6
Views: 2396

Re: change font after creation

... .t. ) Methods available are : METHOD Bold( lOnOff ) METHOD Italic( lOnOff ) METHOD Underline( lOnOff ) METHOD StrikeOut( lOnOff ) METHOD Escapement( nEsc ) METHOD Rotate( n ) METHOD Modify( nHeight, lBold, lItalic, lUnderline, lStrikeOut, nEscapement )
by nageswaragunupudi
Fri Feb 12, 2010 3:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: change font after creation
Replies: 4
Views: 1053

Frank, To avoid the escapement error you have to modify this function in xbrowse.prg: static function FontEsc( oFont ) local nEsc := 0 if oFont != nil .and. ValType( oFont:nEscapement ) == 'N' nEsc := ...
by Antonio Linares
Sat Oct 11, 2008 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE : Error in refresh
Replies: 16
Views: 3733

... para la creación de fuentes. * Nuevo: En font.prg nuevos métodos: Bold( lOnOff ), Italic( lOnOff ), UnderLine( lOnOff ), StrikeOff( lOnOff ), Escapement( nNew ), Rotate( nRotateBy ), Modify( lBold, lItalic, lUnderline, lStrikeOut, nNewEsc ) devuelven el nuevo objeto fuente con la modificación. ...
by Antonio Linares
Fri Aug 29, 2008 7:22 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August / Agosto 2008 (8.08)
Replies: 1
Views: 4723

New FTDN August / Agosto 2008 (8.08)

... STRIKEOUT clause for creation of fonts * New: font.prg new Methods: Bold( lOnOff ), Italic( lOnOff ), UnderLine( lOnOff ), StrikeOff( lOnOff ), Escapement( nNew ), Rotate( nRotateBy ), Modify( lBold, lItalic, lUnderline, lStrikeOut, nNewEsc ) return new font object with the modification. Example: ...
by Antonio Linares
Wed Aug 20, 2008 6:23 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN August / Agosto 2008 (8.08)
Replies: 1
Views: 4723

Ups,,, falto algo FUNCTION BUILDFONT( aFont ) IF EMPTY( aFont[ LF_FACENAME ] ) RETURN NIL ENDIF RETURN TFont():New( aFont[ LF_FACENAME ],; ,; aFont[ LF_HEIGHT ],; .f.,; !( aFont[ LF_WEIGHT ] == FW_NORMAL ),; aFont[ LF_ESCAPEMENT ],; aFont[ LF_ORIENTATION ],; aFont[ LF_WEIGHT ],; aFont[ LF_ITALIC ],;...
by Willi Quintana
Mon Jul 14, 2008 10:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar Tipo de letra y color
Replies: 2
Views: 781

Vertical fonts support in FWH 8.06 XBrowse

Now vertical fonts ( escapement 900 or 2700 ) are supported only headers and only for single line headers. Always the text is centered vertically and horizontally leaving space for bitmap, if any:

Image
by Antonio Linares
Fri Jun 27, 2008 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Vertical fonts support in FWH 8.06 XBrowse
Replies: 0
Views: 453

The real Hight-Information of a selected Font ?

Hello from Germany I'm still struggling with the INI-Handling for Fonts. I got it working like : [Main] DATESET=5 WRITESET=1 [Paint] HEADPIC=1 COLTEXT=2 LOGO1=LOGO1 BRUSH1=9 COLOR1=16711680 LOGO2=LGO2 BRUSH2=9 COLOR2=16711680 POSTOP=10 POSLEFT=70 [SysFonts] FONT1=Arial 10 .F. .F. FONT2=Arial 12 .F. ...
by ukoenig
Sat Feb 23, 2008 5:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: The real Hight-Information of a selected Font ?
Replies: 2
Views: 738
Next

Return to advanced search