Search found 1113 matches: ncol

Return to advanced search

Problemas con comportamiento de XBrowse.

... oBrw:nStretchCol := 2 oBrw:nRowHeight := 30 oBrw:nMarqueeStyle := 4 oBrw:nRowDividerStyle := 2 // color gris y fino la division de columnas oBrw:nColDividerStyle := 0 // color gris y fino la division de renglones oBrw:lColDividerComplete := .f. // la division de renglones es hasta donde hay datos ...
by José Camilo
Fri Mar 15, 2024 2:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con comportamiento de XBrowse.
Replies: 1
Views: 110

eval an action - Resolved!!

... that is, I did it I saved the archive in an aImg array https://i.postimg.cc/tTyg2WNB/m.png local bClick:= {|| aImg[5 ] } @ nRow, nCol BTNBMP oItem PROMPT aImg[ 1 ] ; FILE aImg[2 ] ; SIZE 72,96 PIXEL OF oPanel ; NOBORDER FLAT oItem:oCursor:= oCursorBtn oItem:baction:= (bClick) ...
by Silvio.Falconi
Tue Mar 05, 2024 11:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: eval an action - Resolved!!
Replies: 2
Views: 131

Re: XIMAGE

Estimado Marcelo,

La Clase TXImage proporciona el método Paste( lCheck ) que permite copiar una imagen desde el portapapeles

Además tienes el método PopupMenu( nRow, nCol, nFlags ) que te muestra un popup con la opción Paste

Espero que esto te pueda ser de ayuda
by Antonio Linares
Tue Mar 05, 2024 7:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XIMAGE
Replies: 10
Views: 240

Re: New FTDN February 2024 (FWH 24.02)

... con ella desde su cuadro de diálogo. * Mejora: En los objetos TTaskPanel utilizados de la clase TExplorerBar, se ha implementado una nueva DATA bOnCollapse que se evalúa desde su método LButtonUp( nRow, nCol, nFlags ), de forma que cada panel puede utilizar su propia DATA bOnCollapse para el evento ...
by Antonio Linares
Sun Mar 03, 2024 7:25 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 140

New FTDN February 2024 (FWH 24.02)

... dialog control, so you can interact with it from your dialog box. * Enhancement: In TTaskPanel objects used from Class TExplorerBar, a new DATA bOnCollapse has been implemented and it is evaluated from its method LButtonUp( nRow, nCol, nFlags ), so each panel can use its own DATA bOnCollapse for ...
by Antonio Linares
Sat Mar 02, 2024 8:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN February 2024 (FWH 24.02)
Replies: 1
Views: 140

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

Dear Jimmy, On CLASS TTaskPanel FROM TControl add this DATA: DATA bOnCollapse and then add this code at the bottom of METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TTaskPanel:      ::oWnd:CheckScroll()      if ! Empty( ::bOnCollapse )   ...
by Antonio Linares
Sat Feb 24, 2024 6:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 337

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

hi Antonio, TExplorerBar has no currently support for such event but it can be easily implemented from: METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TTaskPanel thx for Answer there is in CLASS TTaskPanel   DATA   lCollapsed      INIT .F. and it will be assign Value in METHOD LButtonUp(nRow, ...
by Jimmy
Sat Feb 24, 2024 2:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 337

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

... Dear Jimmy, TExplorerBar has no currently support for such event but it can be easily implemented from: METHOD LButtonUp( nRow, nCol, nFlags ) CLASS TTaskPanel
by Antonio Linares
Sat Feb 24, 2024 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 337

Re: Creating table with Trichedit

... ****************** Function RftDemo() ********************** Local anchos,j,lFormato:=.F. //Local Mas_n:={} local aTable:={} local nRow,ncol Local oRtf,aMarca, cOutFile :="Plata.RTF", Sob1 Local aFldNames:= {" Ok ", " 2", " 3", "4","5","6", ...
by Silvio.Falconi
Mon Jan 29, 2024 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1310

Re: Creating table with Trichedit

... ****************** Function RftDemo() ********************** Local anchos,j,lFormato:=.F. //Local Mas_n:={} local aTable:={} local nRow,ncol Local oRtf,aMarca, cOutFile :="Plata.RTF", Sob1 Local aFldNames:= {" Ok ", " 2", " 3", "4","5","6", ...
by MMK
Mon Jan 29, 2024 11:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating table with Trichedit
Replies: 18
Views: 1310

Re: nYoffset and nXoffset

I do not see that method box supports: nXoffset or nYottset. Look into printer.prg. METHOD Box( nRow, nCol, nBottom, nRight, oPen ) INLINE ; Rectangle( ::hDCOut, nRow, nCol, nBottom, nRight,; If( oPen != nil, oPen:hPen, 0 ) ) it's not the problem of oPrn:Box, but I think ...
by Silvio.Falconi
Mon Jan 15, 2024 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 744

Re: nYoffset and nXoffset

I do not see that method box supports: nXoffset or nYottset.
Look into printer.prg.
METHOD Box( nRow, nCol, nBottom, nRight, oPen ) INLINE ;
Rectangle( ::hDCOut, nRow, nCol, nBottom, nRight,;
If( oPen != nil, oPen:hPen, 0 ) )
by Otto
Mon Jan 15, 2024 9:12 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 744

Imprimir grafico insertado en tRichEdit5

... amigos un saludo cordial a todos. Queria saber si alguien ha podido imprimir algun grafico insertado en TRichEdit5, con sentencia : @ nRow, nCol PRINT TO prn TEXT cTextRTF SIZE nWidth,nHeight MM Esta sentencia imprime todo el texto editado con TRichEdit5, pero la imagen insertada la ignora. ...
by Modesto
Mon Jan 08, 2024 1:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir grafico insertado en tRichEdit5
Replies: 4
Views: 389

Convert a print to Rtf or doc

Hi to all I have a print PRINT oPrn NAME "My Print" PREVIEW PAGE WHILE !EOF() some instruction like Prn:Say( nRow, nCol , bla bla ) ENDPAGE PAGE ENDDO ENDPAGE ENDPRINT I need some hints about the possibility to save the print into rtf for or doc You know for instance when you ...
by MarcoBoschi
Wed Nov 29, 2023 12:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Convert a print to Rtf or doc
Replies: 33
Views: 3238

Calculate total pages

... number of pages in a print using for instance PRINT oPrn NAME "My Print" PREVIEW PAGE WHILE !EOF() some instruction like Prn:Say( nRow, nCol , bla bla ) ENDPAGE PAGE ENDDO ENDPAGE ENDPRINT does exist a clause that permits me to run the function without print anything only for calculate ...
by MarcoBoschi
Wed Nov 22, 2023 5:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calculate total pages
Replies: 32
Views: 5508
Next

Return to advanced search