Search found 406 matches: nbottom

Return to advanced search

Re: how to change the size of an xbrowse in runtime

I'm trying to raise the xbrowse but I don't understand how to do it, I tried both with nHeight and with NBottom

Image


I put the checkboxes in a panel under the browse
if I click on the first check I have to raise the xbrowse
by Silvio.Falconi
Thu May 02, 2024 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to change the size of an xbrowse in runtime
Replies: 17
Views: 280

Re: New FTDN April 2024 (FWH 24.04)

... tiempo de ejecución. * Función RoundBox() nuevo undecimo parámetro nPenStyle, por defecto PS_SOLID. Sintaxis: RoundBox( hDC, nLeft, nTop, nRight, nBottom, ; nRound1, nRound2, nPenColor, nPenSize, ; nFillColor, nPenStyle ) * BtnBmp: Soporte de color Alfa. Soporte para fondos de color alfa. - bClrGrad ...
by Antonio Linares
Wed May 01, 2024 7:04 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 387

New FTDN April 2024 (FWH 24.04)

... be toggled during runtime also. * function RoundBox() new 11th parameter nPenStyle, default PS_SOLID Syntax: RoundBox( hDC, nLeft, nTop, nRight, nBottom, ; nRound1, nRound2, nPenColor, nPenSize, ; nFillColor, nPenStyle ) * BtnBmp: Alpha Color support Support for alpha color backgrounds. - bClrGrad ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 387

Re: Another for Btnbmp

... 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, oCli:nRight - 2, hPen ) DeleteObject( hPen )
by Otto
Tue Mar 26, 2024 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Another for Btnbmp
Replies: 26
Views: 5105

Re: GROUPBOX

... ] <nTop> , <nLeft> To specify the top and left coordinates. <oGroup> The variable to containt the object. <nRight>, <nBottom> To specify the right and bottom coordinates. <cLabel> The caption of the group. <oWnd> The window or dialogbox container of ...
by TimStone
Tue Feb 27, 2024 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: GROUPBOX
Replies: 3
Views: 191

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 you ...
by Silvio.Falconi
Mon Jan 15, 2024 9:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: nYoffset and nXoffset
Replies: 11
Views: 838

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: 838

Re: Create a Panel width a text

... structure. Please look for DT_CALCRECT in FWH *.prg source code for code examples yes, I allredy found DrawTextEx( ::hDC, cMessage , {nTop,nLeft,nBottom,nRight} ) but when I have the new cMessage ( edited) I must modify 3 controls on line 1. the TaskPanel 2. the first panel ( shadow) 3. the second ...
by Silvio.Falconi
Fri Jan 05, 2024 10:27 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3232

Re: Create a Panel width a text

... //text nTotRows:= MLCount(Alltrim(cmessage),250) oPanel1 is a ttaskpanel //the shadow oItem1:=Tpanel():New( oPanel1:nTitleHeight +10, 10,; oPanel1:nBottom-30,oPanel1:nWidth-40, oPanel1 ) oItem1:SetBrush( oBrushshadow ) //panel for the text oItem2:=Tpanel():New( 2, 2,; oItem1:nBottom-45,oItem1:nWidth-4, ...
by Silvio.Falconi
Thu Jan 04, 2024 10:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3232

Re: Animaciones en dialogos

Hola, Probablemente se pueda conseguir esos efectos modificando los nTop, nLeft, nBottom y nRight del dialogo combinado con las iteracciones y los sleeps necesarios En lenguaje harbour con fwh consigueme un dialogo que se mueva desde la parte inferior de la pantalla ...
by paquitohm
Wed Dec 27, 2023 5:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Animaciones en dialogos
Replies: 2
Views: 396

Re: Definir font richedit5

... @xHecho, "Desvio", 9, 9, 30, 140 ) sin definir en el programa, lo que hice fue definir: Function RichEdit5( cText, cTitle, nTop, nLeft, nBottom, nRight ) local oFont, oDlg local hDLL local uTemp := If( ! Empty( cText ), cText, '' ) local lRich := .F., lGTF := .F., lOk := .F. publ oMemo ...
by jpcavagnaro
Tue Dec 26, 2023 11:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Definir font richedit5
Replies: 3
Views: 617

Re: Small buttonbar at x,y

Perhaps I resolve with

oBar:Move( oBrw:nbottom+1, oBrw:nLeft )

when I change from one menu to another there is a flashing throughout the dialog and the xbrowse watch this video

Image
by Silvio.Falconi
Wed Dec 06, 2023 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Small buttonbar at x,y
Replies: 7
Views: 750

Re: Desaparecen controles en Folder - Ayuda por favor

... del tamaño original no se pintaban. Me costó mucho entender que no siempre el folder actualizaba nWidth y nHeight, aunque si actualizaba nRight y nBottom. Cambié el tamaño original ( a un tamaó muy grande 2000 x 2000 ) y entonces SI se "pintaban" los controles. Lo dicho, tal vez sea ...
by JESUS MARIN
Tue Jul 18, 2023 5:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Desaparecen controles en Folder - SOLUCIONADO
Replies: 65
Views: 2394

Re: Numeric alignment with oPrn:SayText( )

... Functions", { 30, 0, h, w }, "T", oSmal ) Parameters: 1. cText. ANSI/Unicode single or multi-line text 2. aRect : { nTop, nLeft, nBottom, nRight } in pixels Defaults to ClientRect All co-ordinates are relative to Client Rect. Coordinates: nil --> default to the border >= ...
by Marc Venken
Wed May 17, 2023 10:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric alignment with oPrn:SayText( )
Replies: 8
Views: 564

also the error end on tbtnbmp

... but this morning I got the error is a simple btnbmp control that opens a popup menu https://i.postimg.cc/6TsL3c6w/mmmm.png @ oBrw:nBottom+2, oBrw:nWidth-20 BTNBMP aBtnBrow[3] ; FLAT .... ACTION ::ShowPopUp( { |oBtn| MenuContextual(oBtn,oBrw,oDbf,cIniUser,cSection,,,oDlg,aBtnBrow[4]) ...
by Silvio.Falconi
Wed May 03, 2023 8:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: also the error end on tbtnbmp
Replies: 4
Views: 194
Next

Return to advanced search