Search found 188 matches: nclrback

Return to advanced search

Re: FWH_2407 oSay does not assume nHeight

... [<oWnd>], [<cPict>], <oFont>, <.lCenter.>, <.lRight.>, <.lBorder.>,; <.lPixel.>, <nClrText>, <nClrBack>, <nWidth>, <nHeight>,; <.design.>, <.update.>, <.lShaded.>, <.lBox.>, <.lRaised.>, <.adj.>,; ...
by Antonio Linares
Fri Aug 23, 2024 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH_2407 oSay does not assume nHeight
Replies: 32
Views: 4704

Re: FWH_2407 oSay does not assume nHeight

... [CLR <nClrBorder>] ] ; [ [<relpix:RELATIVE>] <lPixel: PIXEL, PIXELS > ] ; [ <color: COLOR,COLORS > <nClrText> [,<nClrBack> ] ] ; [ SIZE <nWidth>, <nHeight> ] ; [ <design: DESIGN > ] ; [ <update: UPDATE > ] ; [ <lShaded: SHADED, SHADOW ...
by Antonio Linares
Thu Aug 22, 2024 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH_2407 oSay does not assume nHeight
Replies: 32
Views: 4704

Re: ListBox Input Field Scrolling........

... *---------------------------------------------------------------------------* FUNCTION HEditCol( nCol, uVar, cPicture, bValid, nClrFore, nClrBack,aItems, bAction, aVarArry ) *---------------------------------------------------------------------------* LOCAL oDlg, oGet, oFont, oBtn, oBtnAction ...
by RiazKhan
Thu Aug 22, 2024 4:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ListBox Input Field Scrolling........
Replies: 5
Views: 1267

Re: Contraste de colores?

#include "fivewin.ch"function Main()   local aDlg[ 30 ], oFont, nClrText, nClrBack, n   local nTop  := 0   local nLeft := 1200   DEFINE FONT oFont NAME "VERDANA" SIZE 0,-20   for n := 1 ...
by nageswaragunupudi
Thu Jun 27, 2024 5:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contraste de colores?
Replies: 23
Views: 1778

Re: Contraste de colores?

Cual es el efecto que deberia esperar? Porque no noto cambios ...
nageswaragunupudi wrote:ContrastClr( nClrBack )
by cmsoft
Wed Jun 26, 2024 9:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contraste de colores?
Replies: 23
Views: 1778

Re: Contraste de colores?

Sorry for my typo
I suggest using ContrastClr( nClrBack ) from imgtxtio.prg
not ContrastColor(...) in XBrowse.
by nageswaragunupudi
Wed Jun 26, 2024 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contraste de colores?
Replies: 23
Views: 1778

Re: Contraste de colores?

Please try
Code: Select all  Expand view  RUN
ContrastColor( nClrBack )


I am sorry, I meant ContrastClr( nClrBack ) not ContrastColor(...)
by nageswaragunupudi
Wed Jun 26, 2024 1:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Contraste de colores?
Replies: 23
Views: 1778

Re: GROUPBOX

... [ <oGroup> ]; [ LABEL | PROMPT <cLabel> ]; [ ID <nId> ]; [ OF | WINDOW | DIALOG <oWnd> ]; [ COLOR <cClrFore> [, <nClrBack> ] ]; [ FONT <oFont> ]; [ TRANSPARENT ] <nTop> , <nLeft> To specify the top and left coordinates. <oGroup> The variable ...
by TimStone
Tue Feb 27, 2024 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 399

Re: Numeric alignment with oPrn:SayText( )

From Whatnew * TWindow Method SayText( cText, aRect, cAlign, oFont, nClrText, nClrBack, lBorder ) Applies to all derived classes like dialogs and controls To be used in o:bPainted. function FW_SayText( hDC or oWnd, cText, aRect, cAlign, oFont, nClrText, nClrBack, ...
by Marc Venken
Wed May 17, 2023 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric alignment with oPrn:SayText( )
Replies: 8
Views: 1119

Re: New FTDN April/Abril 2023 (FWH 23.04)

... nFormat es nulo, el formato se devuelve en este parámetro. * Nuevo: Nueva función FW_ImageToBlob( [npImage], [cType], [nJpgQuality], ; [lAlpha], [nClrBack], [nWidth], [nHeight] ) ; --> cBlob - 1. npImage: Opcional. hBitmap o puntero de imagen GDI+. Si es nulo, por defecto hBitmap desde el portapapeles, ...
by Antonio Linares
Thu May 04, 2023 6:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 3027

New FTDN April/Abril 2023 (FWH 23.04)

... passed by ref and nFormat is nil, the format is returned in this parameter. * New: FW_ImageToBlob( [npImage], [cType], [nJpgQuality], ; [lAlpha], [nClrBack], [nWidth], [nHeight] ) ; --> cBlob - 1.npImage: Optional. hBitmap or GDI+ image pointer If nil, defaults to hBitmap from Clipboard, if ...
by Antonio Linares
Tue May 02, 2023 7:08 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 3027

Re: Color of rows in the cell

...     If( oCol:oBrw:KeyNo % 2 == 0, aClr1, aClr2 ) ) }END  2) We know bClrStd returns a color pair { nClrText, nClrBack } If instead of returning a single color as nClrText, if we return an array of colors, those colors are used in the place of aClrText. This ...
by nageswaragunupudi
Sat Jan 28, 2023 1:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Color of rows in the cell
Replies: 5
Views: 597

Re: Change Footer colors (xBrowse)

return color pair { nClrText, nClrBack } when your bClrFooter is evaluated.
by nageswaragunupudi
Sat Jan 28, 2023 12:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change Footer colors (xBrowse)
Replies: 10
Views: 1105

Re: RTF from Variable

Dear Tim, This is the syntax for Class TPrinter Method SayText() METHOD SayText( nRow, nCol, cText, nWidth, nHeight, oFont, cAlign, nClrText, nClrBack, cUnits, ; nOutLineClr, nPenSize ) Please notice that you can use ANY font in oFont parameter, different colors, pensize... That is RTF power :-)
by Antonio Linares
Fri Dec 10, 2021 6:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RTF from Variable
Replies: 40
Views: 5670

Re: Que Clase o control será ?

... ] ; [ <change: ON CLICK, ON CHANGE> <uClick> ] ; [ VALID <ValidFunc> ] ; [ <color: COLOR, COLORS> <nClrFore> [,<nClrBack>] ] ; [ <design: DESIGN> ] ; [ <pixel: PIXEL> ] ; [ MESSAGE <cMsg> ] ; [ <update: UPDATE> ] ; [ WHEN <WhenFunc> ...
by nageswaragunupudi
Fri Sep 03, 2021 5:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Que Clase o control será ?
Replies: 3
Views: 767
Next

Return to advanced search