Search found 149 matches: drawn

Searched query: drawn

by Antonio Linares
Fri Jan 17, 2025 11:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4835

Re: Using new Class TDeepSeek for documenting

... in the combo box.

2. **`aBitmaps`**:
- **Type**: Array
- **Description**: Stores bitmaps associated with the combo box items (used for owner-drawn combo boxes).

3. **`nItemHt`**:
- **Type**: Numeric
- **Description**: Height of the items in the combo box.

4. **`lOwnerDraw`**:
- **Type ...
by Antonio Linares
Fri Jan 17, 2025 11:03 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4835

Re: Using new Class TDeepSeek for documenting

... whether the tooltip has a left-aligned section.

4. **`lLineHeader`**
- **Type:** LOGICAL
- **Description:** Indicates whether a line should be drawn in the header.

5. **`lLineFoot`**
- **Type:** LOGICAL
- **Description:** Indicates whether a line should be drawn in the footer.

6. **`lBorder ...
by Antonio Linares
Fri Jan 17, 2025 11:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4835

Re: Using new Class TDeepSeek for documenting

... alpha level (transparency) of the bitmap.

6. **`lBmpTransparent`**
- **Type:** Logical
- **Description:** Indicates whether the bitmap should be drawn with transparency. Default is `.T.` (true).

7. **`lGDIP`**
- **Type:** Logical
- **Description:** Indicates whether GDI+ is used for rendering ...
by Antonio Linares
Fri Jan 17, 2025 10:49 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 4835

Re: Using new Class TDeepSeek for documenting

... cText, oFont, nColor, nAlign )`**
- **Description:** Draws multi-line text on the button.
- **Parameters:**
- `cText`: The text to be drawn.
- `oFont`: The font to be used.
- `nColor`: The color of the text.
- `nAlign`: The alignment of the text.
- **Returns:** `nil`.

10 ...
by Silvio.Falconi
Tue Nov 12, 2024 11:15 pm
Forum: FiveWin for Harbour/xHarbour
Topic: draw lines on xbrowse
Replies: 6
Views: 942

Re: draw lines on xbrowse

No i Need Lines each 10

maybe the problem is that you did not understand, the lines are drawn well, when you scroll with the horizontal scrollbar the lines do not remain every 10 columns, when you use the vertical scroll the lines disappear (previous message from November 7, 2022), I do not want to ...
by Silvio.Falconi
Fri Oct 11, 2024 9:24 am
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

Re: drawing a circle with FW_Box

... 108)

DEFINE WINDOW oWnd SIZE 200,200 PIXEL

oWnd:bPainted := { |hDC| FW_Box( hDC, { 20,20,120,120 }, { nClr, 3 }, nil, , 2 ) }


The circle is drawn with the specified color only but not black.


Nages, can I print with fw_box?

sample
FW_Box( oPrn:hdc, { nY, nX, nY + nPixelAltezza, nX ...
by nageswaragunupudi
Thu Oct 03, 2024 2:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: drawing a circle with FW_Box
Replies: 6
Views: 848

Re: drawing a circle with FW_Box

... color/pen is used and it never uses black color.
As a test you may check
local nClr := RGB(243, 101, 108)

DEFINE WINDOW oWnd SIZE 200,200 PIXEL

oWnd:bPainted := { |hDC| FW_Box( hDC, { 20,20,120,120 }, { nClr, 3 }, nil, , 2 ) }


The circle is drawn with the specified color only but not black.
by Silvio.Falconi
Wed Sep 25, 2024 7:51 am
Forum: FiveWin for Harbour/xHarbour
Topic: determine geometric figure
Replies: 0
Views: 648

determine geometric figure

having a series of numbers how do you determine which geometric figure (triangle, rectangle, square, pentagon, hexagon) can be drawn?

First example
if I have these numbers 4, 34, 64 I can make a triangle

Second example
if I have these numbers 15, 30, 45, 60, 75, 90 I can make a hexagon


third ...
by Silvio.Falconi
Wed Sep 25, 2024 7:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: PolyPolygon
Replies: 0
Views: 679

PolyPolygon

... can i do it?

what are the correct functions or commands?


another problem is that when I move a dialog over it or move the dialog where the polygon is drawn it gets deleted, as you can see here




https://i.postimg.cc/Wzvr9xFs/bad.gif


if there is someone who can help me I am also willing to pay
by Antonio Linares
Wed Apr 24, 2024 7:14 am
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 4032

New FTDN April 2024 (FWH 24.04)

... other styles are better suited for gradients.

- Now, flat style buttons also have alpha color support, like
other styles.

- While focusrect is drawn for othe styles using Windows API
function DrawFocusRect( hDC, rect ) (user has no choice of
colors), for flat style buttons FocusRect is drawn ...
by Silvio.Falconi
Mon Mar 25, 2024 9:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 9044

Re: Another for Btnbmp

Dear Mr. Silvio

when I press a button then a black border forms how do I remove the black border?

By default, this border, called FocusRect is drawn around the button in focus, same way as Windows OS paints TButton, TButtonBmp. This border indicates to the user which button has focus currently ...
by nageswaragunupudi
Mon Mar 25, 2024 1:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 9044

Re: Another for Btnbmp

Dear Mr. Silvio

when I press a button then a black border forms how do I remove the black border?

By default, this border, called FocusRect is drawn around the button in focus, same way as Windows OS paints TButton, TButtonBmp. This border indicates to the user which button has focus currently ...
by Silvio.Falconi
Thu Mar 21, 2024 11:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: Splitter and Resize window
Replies: 0
Views: 688

Splitter and Resize window

... should move to the left

when the window is widened the splitter must go to the right and the second explorer must have the dimensions

as I have drawn them in the figure below

https://i.postimg.cc/k5YdbLdf/kkkkkkkkkk.png


the test


#include "FiveWin.ch"
#include "Splitter.ch"

#define ID ...
by Marc Venken
Tue Feb 20, 2024 10:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Google Graph extra graphic ? (Navaro)
Replies: 23
Views: 5592

Re: Google Graph extra graphic ? (Navaro)

... transparent

<div id="chart_div" style="width: 400px; height: 120px;"><background-color="transparent;"></div>

If the html is made and the pie is drawn. do I try to change the data of the pie in the html ?

I mean that the pie is onscreen and the arduino is sending new data to update the pie ...
by nageswaragunupudi
Fri Jan 12, 2024 2:20 am
Forum: FiveWin para Harbour/xHarbour
Topic: GroupHeader en la TReport (Antonio/Mr. Rao)
Replies: 4
Views: 649

Re: GroupHeader en la TReport (Antonio/Mr. Rao)

If we add the clause GRID to the COLUMN definition, vertical lines are drawn on both sides of the column.