Search found 271 matches: pen

Return to advanced search

New FTDN April 2024 (FWH 24.04)

... derived from tDataRow class. This enables editing a single existing record or a new record and saving to a table without having to open RowSet object, thus saving time. Usage: oCustRec := oCn:Record( "customer" ) // creates a blank record oCustRec:Edit() // edit and save ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 0
Views: 33

Re: Another for Btnbmp

... have to implement the drawing yourself. You can do this by drawing a rectangle using functions like WndBoxClr, where you can specify the brush or pen color. Otto local hPen, oCli := ::GetCliRect() hPen = CreatePen( PS_SOLID, 1, nRGB( 255, 0, 0 ) ) WndBoxClr( ::GetDC(), 1, 1, oCli:nBottom - 2, ...
by Otto
Tue Mar 26, 2024 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 4959

Re: Problem with tget numeric

... categories and subcategories but the customer didn't like this type of insertion, he wants to be faithful to the old insertion he did with his pen and paper model. moreover, since the operator has to work in the oven his hands are always dirty with flour and my touch cashier is the only solution ...
by Silvio.Falconi
Wed Jan 17, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1432

Re: Problem with tget numeric

... lines as the types of bread ordered, so the operation must be very fast and this operation is done every day now it is still done by hand with a pen on a paper model. It is not easy to understand the problem
by Silvio.Falconi
Tue Jan 16, 2024 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tget numeric
Replies: 16
Views: 1432

Como Separar lineas en Archivo TXT SOLUCIONADO

... de línea tiene LF alguna sugerencia. 2023/05/11||03|B001|945||1|21812734|RAMIREZ BENGOLEA DE VASQUEZ MARILUZ|0|14.41|0|2.59|0|0|0|0|0|0|0|0|17|PEN|1.000|||||||1|0|0|0101|||2053460194903B0010000000945
by CARLOS ATUNCAR
Sun Sep 24, 2023 11:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como Separar lineas en Archivo TXT SOLUCIONADO
Replies: 1
Views: 259

PaintBorder of Btnbmp ( fwteam)

Perhaps I found a solution for the border I would like to propose these changes to the fwteam #define WHITE_PEN 6 // add this on top METHOD PaintBorder() CLASS TBtnBmp local nAdjustBorder := 0 local nWidth, nAdj, oCli local nRound := If( ::lRound, ::nRound, 0 ) local hWhitePen, hGrayPen, hOldPen add...
by Silvio.Falconi
Sat Jun 10, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PaintBorder of Btnbmp ( fwteam)
Replies: 1
Views: 151

Re: Recortar foto tomada con la camara web

Leandro, Añade estas líneas al ejemplo photos.prg: local oPen, nX1, nY1, nX2, nY2 DEFINE PEN oPen COLOR CLR_YELLOW WIDTH 3 ... oImg:bLClicked = { | nRow, nCol | If( nX1 == nil, ( nX1 := nRow, nY1 := nCol ), ( nX1 := nil, nX2 := nil ) ) } oImg:bMMoved = { | nRow, nCol, ...
by Antonio Linares
Tue May 23, 2023 4:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Recortar foto tomada con la camara web
Replies: 7
Views: 499

PEN AL GENERAR PDF

Saludos

Al generar un PDF
no respeta la definición de PEN
cualquier valor que ponga, siempre sale muy gruesa la linea

DEFINE PEN oPEN1 WIDTH .5 OF oPRN
oPrn := FWPdf():New( cARCHPDF )
oPRN:LINE( Row* 10,CCOL*5 C,Row*10,CCOL*55,oPEN1)
by Marco Augusto
Sat Jan 21, 2023 3:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: PEN AL GENERAR PDF
Replies: 0
Views: 265

Re: Show LINESTYLE of Xbrowse on line

... color after creating the browse. We will consider providing this in future versions. Even then we will provide facility to change color of the pen ( GRAY to BLACK or any other color) but not the thickness of the Vertical Line. For now, I will give you a small function, Using this function, ...
by Silvio.Falconi
Thu Nov 03, 2022 9:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show LINESTYLE of Xbrowse on line - (run with errors)
Replies: 17
Views: 1065

Re: Show LINESTYLE of Xbrowse on line

... color after creating the browse. We will consider providing this in future versions. Even then we will provide facility to change color of the pen ( GRAY to BLACK or any other color) but not the thickness of the Vertical Line. For now, I will give you a small function, Using this function, ...
by nageswaragunupudi
Thu Nov 03, 2022 3:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Show LINESTYLE of Xbrowse on line - (run with errors)
Replies: 17
Views: 1065

TDatabase broken backward compatibility

When I upgrade some of my existing codes from FWH11.08 to FWH19.12, I found the following behaviour changes 1. The newer TDatabase will not change to the workarea of dbf opened using :open() 2. The newer TDatabase():save() under certain situation will do an APPEND BLANK automatically. Apart from lin...
by hua
Thu Nov 03, 2022 3:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase broken backward compatibility
Replies: 2
Views: 290

Re: Clase para Graficos Vectoriales

DEFINE PEN oPen STYLE 2 // PS_DOT
#define PS_SOLID 0
#define PS_DASH 1 /* ------- */
#define PS_DOT 2 /* ....... */
#define PS_DASHDOT 3 /* ... */
#define PS_DASHDOTDOT 4 /* ...._ */
by Antonio Linares
Wed Sep 21, 2022 3:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase para Graficos Vectoriales
Replies: 20
Views: 1157

Re: cyclometric circle

... The Polygon function draws a polygon consisting of two or more vertices connected by straight lines. The polygon is outlined by using the current pen and filled by using the current brush and polygon fill mode. PolyPolygon https://docs.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-polypolygon ...
by Jimmy
Mon Aug 01, 2022 5:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 3029

Re: Can Colorized this border ?

Silvio,

my solution is tested on all 4 positions

possible to define : pensize, color and the pen transparentlevel

Image

Image

regards
Uwe :D
by ukoenig
Sat Dec 04, 2021 10:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can Colorized this border ?
Replies: 7
Views: 648

Re: ExtCreatePen

A pointer to a LOGBRUSH structure. If dwPenStyle is PS_COSMETIC, the lbColor member specifies the color of the pen and the lpStyle member must be set to BS_SOLID. If dwPenStyle is PS_GEOMETRIC, all members must be used to specify the brush attributes of the pen. https://docs.microsoft.com/en-us/windows/win32/api/wingdi/nf-wingdi-extcreatepen
by Antonio Linares
Wed Sep 08, 2021 5:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ExtCreatePen
Replies: 10
Views: 1196
Next

Return to advanced search