Search found 113 matches: ntype

Searched query: ntype

by Antonio Linares
Sat Feb 08, 2025 9:41 am
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar tamaño caja toast
Replies: 7
Views: 1732

Re: Ajustar tamaño caja toast

... RoUninitialize()

return nil

//---------------------------------------------------------------------------//

DLL FUNCTION RoInitialize( nType AS LONG ) AS LONG PASCAL LIB "combase.dll"

DLL FUNCTION RoUninitialize() AS VOID PASCAL LIB "combase.dll"

DLL FUNCTION WindowsCreateString ...
by Antonio Linares
Fri Jan 24, 2025 10:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 5078

Re: Using new Class TDeepSeek for documenting

... Uses default arrow bitmap.
oBrw:SetRecSelBmp( nil ) // Removes the bitmap.
content_copy
download
Use code with caution.
Harbour

6. SetRecSelSl( nType )

Description: Sets the record selector to display either record numbers or key numbers.

Parameters:

nType: NUMERIC - 1 to display record ...
by Antonio Linares
Sat Jan 18, 2025 10:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using new Class TDeepSeek for documenting
Replies: 29
Views: 5078

Re: Using new Class TDeepSeek for documenting

... the `WHEN` clause of the control.

#### **Drag and Drop**
- **`DragBegin(nRow, nCol, nKeyFlags)`**: Begins the drag operation.
- **`MResize(nType, nRow, nCol, oDot)`**: Resizes the control using the mouse.
- **`ShowDots()`**: Shows the resize dots around the control.
- **`HideDots()`**: Hides ...
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: 5078

Re: Using new Class TDeepSeek for documenting

... box.

51. **`SetDir()`**:
- **Description**: Sets the directory for directory combo boxes.
- **Parameters**:
- `cDir`: Directory path.
- `nType`: Directory style.

52. **`SetFont()`**:
- **Description**: Sets the font for the combo box.
- **Parameters**:
- `oFont`: Font object ...
by Silvio.Falconi
Fri Nov 15, 2024 9:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: Save dialog to Jpg RESOLVED
Replies: 3
Views: 903

Re: Save dialog to Jpg

Now I correct with this

[img] Function SalvaDialog(nType,oDlg)
local cFileJpg1:= "TopTen_Lotto_Ritardatari.jpg"
local cFileJpg2:= "TopTen_Lotto_Frequenti.jpg"
local oRect:= oDlg:GetCliRect()
If nType=1
oDlg:SaveAsImage( cFileJpg1, { oRect:nTop, oRect:nLeft, oRect:nbottom, oRect:nright-100 ...
by Silvio.Falconi
Fri Nov 15, 2024 9:21 am
Forum: FiveWin for Harbour/xHarbour
Topic: Save dialog to Jpg RESOLVED
Replies: 3
Views: 903

Re: Save dialog to Jpg

oDlg:SaveAsImage( cFileJpg, { top, left, bottom, right } )


I made
oBar:AddItem( "Salva", "save_48.bmp", {|| SalvaDialog(nType,oDlg) }, {||.t.}, .f., "" )

Function SalvaDialog(nType,oDlg)
local cFileJpg1:= "TopTen_Lotto_Ritardatari.jpg"
local cFileJpg2:= "TopTen_Lotto_Frequenti.jpg"
If nType ...
by Antonio Linares
Thu Aug 08, 2024 11:50 am
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2024 (FWH 24.07)
Replies: 8
Views: 8264

Re: New FTDN July/Julio 2024 (FWH 24.07)

... Nuevo: Nueva función nRGB2Array( nRGBColor ). Devuelve una matriz con los valores RGB { nRed, nGreen, nBlue }.

* Nuevo: Nuevo método Image( [nType], [aCropRect] ) --> pImage (puntero de imagen gdi+) en la clase TWindow.
nType (default 1 ): Imagen del área cliente de la ventana.
nType ( 0 ...
by Antonio Linares
Mon Aug 05, 2024 4:14 pm
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio 2024 (FWH 24.07)
Replies: 8
Views: 8264

New FTDN July/Julio 2024 (FWH 24.07)

... tests using it.

* New: function nRGB2Array( nRGBColor ) return an array with the RGB values { nRed, nGreen, nBlue }

* New: TWindow method Image( [nType], [aCropRect] ) --> pImage (gdi+ image pointer)
nType (default 1 ): Image of the window's client area
nType ( 0 ): Image of the full window ...
by Antonio Linares
Mon Apr 05, 2021 6:43 am
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 2966

Re: New FTDN February/Febrero 2021 (FWH 21.02)

... l3d: 3D> ] ;
[ <lxGrid: XGRID> ] ;
[ <lyGrid: YGRID> ] ;
[ <lxVal: XVALUES> ] ;
[ <lyVal: YVALUES> ] ;
[ <lLegends: LEGENDS> ] ;
[ TYPE <nType> ] ;
[ FONT <oFont> ] ;
=> ;
<oGraph> := TGraph():Define( <nWidth>, ;
<nHeight>, <cTitle>, <.l3d.>, <.lxGrid.>, ;
<.lyGrid.>, <.lxVal ...
by CARLOS ATUNCAR
Thu Apr 01, 2021 3:34 am
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )
Replies: 6
Views: 1710

Re: AYUDA PARA LEER XML DE FACTURA ELECTRONICA ( SOLUCIONADO )

... cRet
ENDIF

oNode := oXmlDoc:findfirst(cNodo)

If oNode != Nil
If lNodo
xmlNode := oXmlDoc:oRoot:oChild

WHILE xmlNode != NIL
cPath := xmlNode:Path()
If xmlNode:nType=5
cRet :=xmlNode:cData
Exit
EndIf
xmlNode := xmlNode:NextInTree()
ENDDO
Else
cRet := oNode:cData
EndIf
Endif

Return(cRet)
by Antonio Linares
Wed Mar 24, 2021 8:56 am
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2021 (FWH 21.02)
Replies: 2
Views: 2966

New FTDN February/Febrero 2021 (FWH 21.02)

... l3d: 3D> ] ;
[ <lxGrid: XGRID> ] ;
[ <lyGrid: YGRID> ] ;
[ <lxVal: XVALUES> ] ;
[ <lyVal: YVALUES> ] ;
[ <lLegends: LEGENDS> ] ;
[ TYPE <nType> ] ;
[ FONT <oFont> ] ;
=> ;
<oGraph> := TGraph():Define( <nWidth>, ;
<nHeight>, <cTitle>, <.l3d.>, <.lxGrid.>, ;
<.lyGrid.>, <.lxVal ...
by rterraz
Mon Mar 15, 2021 12:02 pm
Forum: FiveWin para Harbour/xHarbour
Topic: problema con DrawBitmap() usando tCodeBars
Replies: 10
Views: 1721

Re: problema con DrawBitmap() usando tCodeBars

... CLASS TCODEBARS //////////////////////

CLASS TCodeBars

DATA aTypes HIDDEN

DATA cCode
DATA nFlags

DATA hCodeBar
DATA hData

DATA nType, nWidth, nHeight, nWidthCode, nHeightCode

METHOD New()
METHOD End() INLINE DeleteObject( ::hCodeBar ), If( ::hData != NIL, hb_zebra_destroy ...
by servicomver
Tue Jan 19, 2021 9:03 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Graficos TGRAPH
Replies: 2
Views: 600

Graficos TGRAPH

... retomando la clase Tgraph para hacer pruebas con algunos gráficos, tengo dos dudas que ojalá me puedan ayudar:
1.-¿ Como puedo hacer que en la gráfica de puntos, los puntos se unan con una línea ?
oGraph:nType := 3

2.-¿ Como grabo el gráfico para poder insertarlo en un PDF ?

Gracias de antemano.
by MOISES
Thu Mar 19, 2020 12:48 pm
Forum: FiveWin for Harbour/xHarbour
Topic: bug FWAdoFieldType [urgent]
Replies: 18
Views: 2640

Re: bug FWAdoFieldType

function FieldTypeAdoToDbf( nType ) fails too, in Access and MYSQL.
by ukoenig
Mon Sep 30, 2019 1:29 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Any tests drawing text with GDIPLUS ?
Replies: 7
Views: 1952

Re: Any tests drawing text with GDIPLUS ?

... The 1. and 3. one works fine

METHOD NewSolidBrush( nTrans, nRed, nGreen, nBlue )
METHOD NewTextureBrush( oGdiBmp )
( wanted to be used for text )
METHOD NewGradientBrush( nTop, nLeft, nWidth, nHeight, nType,;
nTrans1, nRed1, nGreen1, nBlue1,;
nTrans2, nRed2, nGreen2, nBlue2 )

regards
Uwe