Search found 31 matches: selfont

Return to advanced search

Video – xBrowser SelFont() for columns visually

http://www.atzwanger.com/fwvideo/xbtool/xBToolSelFont.html Add these changes to xBrowser-class METHOD SelFont(nSelCol) CLASS TXBrowse local oFont, n DEFINE FONT oFont FROM USER IF nSelCol = 0 if oFont:cFaceName != "SYSTEM_FONT" for n ...
by Otto
Fri Dec 14, 2007 9:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Video – xBrowser SelFont() for columns visually
Replies: 0
Views: 407

... * Mejora: En la clase TGet, se creaba un cursor parpadeante cuando la altura no era correcta. Ahora está perfecto. * Mejora: En FWH, el método SelFont() en la clase TXBrowse. * Corrección: En la clase TButtonBmp, no estaba mostrando su mensaje asociado si era definido. Ahra está perfecto. * ...
by Antonio Linares
Thu Sep 13, 2007 11:04 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2007
Replies: 1
Views: 2661

New FTDN September/Septiembre 2007

... column) are swapped. * Enhancement: Class TGet created insert caret height was not correct. Now it is ok. * New: FWH Class TXBrowse new Method SelFont(). * Fix: Class TButtonBmo was not properly showing its associated message if defined. Now it is ok. * New: FWH Class TOutLook2003, please review ...
by Antonio Linares
Thu Sep 13, 2007 8:30 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2007
Replies: 1
Views: 2661

Edu, Añade este método a la Clase TXBrowse: METHOD SelFont() CLASS TXBrowse local oFont, n DEFINE FONT oFont FROM USER for n = 1 to Len( ::aCols ) ::aCols[ n ]:oDataFont = oFont next ::Refresh() ...
by Antonio Linares
Thu Sep 06, 2007 9:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: cambiar fuente en TXBrowse()
Replies: 8
Views: 1869

Edu, Please add this new method to Class TXBrowse: METHOD SelFont() CLASS TXBrowse local oFont, n DEFINE FONT oFont FROM USER for n = 1 to Len( ::aCols ) ::aCols[ n ]:oDataFont = oFont next ::Refresh() ...
by Antonio Linares
Thu Sep 06, 2007 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change font for TXBrowse()
Replies: 5
Views: 1146

change font for TXBrowse()

Hi, I am trying to change font in XBrowse, allowing the user to change it in runtime. In listbox I did: oBrowse:Selfont() oBrowse:Refresh() But It does not work. Also I have tried: LOCAL oFont DEFINE FONT oFont FROM USER oBrowse:Setfont(oFont) oBrowse:Refresh() and it does not ...
by edu_parada
Sun Sep 02, 2007 11:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: change font for TXBrowse()
Replies: 5
Views: 1146

Prueba asignandole el font asi:

obrowse:SetFont (no SelFont)

SALUDOS
by Mike Serra
Sun Sep 02, 2007 7:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: cambiar fuente en TXBrowse()
Replies: 8
Views: 1869

cambiar fuente en TXBrowse()

Hola;

En el LISTBOX para cambiar la fuente hacía:

oBrowse:Selfont()
oBrowse:Refresh()


Pero no marcha en TXBrowse(), ¿por qué?. Muchas gracias.

Salu2
by edu_parada
Sat Sep 01, 2007 7:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: cambiar fuente en TXBrowse()
Replies: 8
Views: 1869

RENE FLORES

TWindow():SelFont(), con esto se abre la ventana de fuentes,, bueno tu la conoces de sobra:: esa en la cual puedes elejir: la fuente , el estilo, el tamaño, el color,, etc... pero como lo conecto al programa lo q quiero hacer es ...
by A&C
Fri Jan 26, 2007 8:21 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RENE FLORES
Replies: 2
Views: 901

RENE FLORES UNA MANITO PORFIS

TWindow():SelFont(), con esto se abre la ventana de fuentes,, bueno tu la conoces de sobra:: esa en la cual puedes elejir: la fuente , el estilo, el tamaño, el color,, etc... pero como lo conecto al programa lo q quiero hacer es ...
by A&C
Fri Jan 26, 2007 7:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SOBRE PRINTER
Replies: 4
Views: 1004

Otto, Here is the selFont() method from TWindow: METHOD SelFont() BLOCK { | Self, nClr | nClr := ::nClrText,; ::SetFont( If( ::oFont == nil,; TFont():New( ,,,.t. ...
by James Bott
Wed Jan 03, 2007 5:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SelFont
Replies: 16
Views: 4178

Hello Enrico, adesso ti spiego ... I do have a button where the user can change the font of the browser on the fly. oLbxX:SelFont() does the job. but then the new selection should become the new default setup. Therefore I have to store all the values. If you start your program next ...
by Otto
Wed Jan 03, 2007 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SelFont
Replies: 16
Views: 4178

Hello Antonio , hello Rossine,
thank you for your answer.

oWnd:SetColor( ..., ... ) does what I want but how can I extract color

as a return from oLbx:SelFont() .

Thanks in advance
Otto
by Otto
Wed Jan 03, 2007 5:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SelFont
Replies: 16
Views: 4178

... But I can't find a way how to do. 1) DEFINE FONT oFontTest NAME "MS Sans Serif" SIZE -7.04,-16 and the color should be black. 2) I use oLbxX:SelFont() and would like to save the values oLbxX:oFont:cFaceName () … and also the chosen color. How to get the color? Maybe you have a code example. ...
by Otto
Wed Jan 03, 2007 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: SelFont
Replies: 16
Views: 4178

Re: SelFont

Have a look on how oFont:Choose() method is implemented.

EMG
by Enrico Maria Giordano
Tue Jan 02, 2007 8:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SelFont
Replies: 16
Views: 4178
PreviousNext

Return to advanced search