Search found 1160 matches: nheight

Return to advanced search

Re: Definir font richedit5

... <nLeft> RICHEDIT5 [ <oRTF> VAR ] <uVar> ; [ <dlg: OF, WINDOW, DIALOG> <oWnd> ] ; [ SIZE <nWidth>, <nHeight> ] ; [ FONT <oFont> ] ; [ <pixel: PIXEL> ] ; [ MESSAGE <cMsg> ] ; [ <lHScroll: HSCROLL> ] ; [ <readonly: READONLY, ...
by cnavarro
Sun Dec 24, 2023 10:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Definir font richedit5
Replies: 3
Views: 639

Re: New FTDN October/Octubre 2023 (FWH 23.10)

... es equivalente a hacer oItem:oTree:Select( oItem ), así que ahora puedes simplemente hacer oItem:Select() * Mejora: DEFINE WINDOW ... SIZE nWidth, nHeight son soportados. * Nuevo: Ejemplo samples\winexpl.prg, muestra cómo usar EnumChildWindows(). * Mejora: En XBrowse, ahora se puede especificar ...
by Antonio Linares
Sun Dec 03, 2023 4:46 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3933

Problem with Numeric get

... UPDATE @ 70, 245 GET aGet[7] VAR nWidth OF oDlg SIZE 28, 12 PIXEL FONT oFont PICTURE "@Z 999.99" UPDATE @ 70, 245 GET aGet[8] VAR nHeight OF oDlg SIZE 28, 12 PIXEL FONT oFont PICTURE "@Z 999.99" UPDATE https://i.postimg.cc/cLtzVWG7/jj.gif the user must ...
by Silvio.Falconi
Sat Dec 02, 2023 5:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with Numeric get
Replies: 0
Views: 339

Re: xbrowse Border

... of Xbrowse class I propose this solution for displaying the border in the presence of vertical scrolling if ::lDrawBorder // ::Box( 0, 0, ::nHeight - 1, ::nWidth - 1, IfNil( ::nClrBorder, ::hColPen ) ) ::Box( 0, 0, ::nHeight - 1, ::BrwWidth(), IfNil( ::nClrBorder, ::hColPen ) ) endif https://i.postimg.cc/vHytyBsS/ok.png ...
by Silvio.Falconi
Mon Nov 13, 2023 8:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Border
Replies: 1
Views: 287

New FTDN October/Octubre 2023 (FWH 23.10)

... it is equivalenf of doing oItem:oTree:Select( oItem ), so now you can simply do oItem:Select() * Enhancement: DEFINE WINDOW ... SIZE nWidth, nHeight is supported. * New: samples\winexpl.prg shows how to use EnumChildWindows() * Enhancement: XBrowse: now json file name can be specified as ...
by Antonio Linares
Thu Nov 02, 2023 9:53 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2023 (FWH 23.10)
Replies: 1
Views: 3933

Re: IMPRESION ARCHIVOS PDF

As of now the FWPDF class does not support the method SetSize( nWidth, nHeight ) This class supports only SetPage( nPageType ), same as TPrinter class. The permitted page sizes are:   { {  DMPAPER_LETTER,      HPDF_PAGE_SIZE_LETTER, ...
by nageswaragunupudi
Wed Oct 11, 2023 4:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRESION ARCHIVOS PDF
Replies: 27
Views: 1680

Re: XBROWSE NOT RESIZE

"SIZE " clause woks only when we create xbrowse from code, not when we create XBROWSE from resource, because RC file restricts the size of the control.

I have not yet tested it but try:
After redefining the xbrwose, set
oBrw:nWidth := ...
oBrw:nHeight := ...
by nageswaragunupudi
Mon Oct 09, 2023 2:13 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE NOT RESIZE
Replies: 1
Views: 266

error TXBROWSE:CARGOS

... princfac:Move( 0, 0 ) ) //, oRich:LoadRtf( xobserva ), oRich:PostMsg( WM_KEYDOWN, VK_HOME, 0 )) oWndChild:nWidth := princfac:nWidth + 7 oWndChild:nHeight := princfac:nHeight + 32 ACTIVATE WINDOW oWndChild on init ( onrocli:setfocus() )
by jpcavagnaro
Wed Aug 30, 2023 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: error TXBROWSE:CARGOS
Replies: 3
Views: 298

Re: como refrescar un listbox

... no me estaba funcionando el timer, lo declare así: ACTIVATE DIALOG oDlg ON INIT ( oDlg:SetPos( 0, 0 ), oDlg:nWidth := GetSysMetrics( 0 ), oDlg:nHeight := GetSysMetrics( 1 ), BuildTimer( oDlg, obrow )) function BuildTimer( oDlg, wobrow ) local oTmr DEFINE TIMER oTmr OF oDlg ; ACTION busco(wobrow) ...
by jpcavagnaro
Tue Aug 15, 2023 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: como refrescar un listbox
Replies: 2
Views: 243

Re: Consulta sobre centrar un dialogo.

... on INIT (BtnBarNew( oBrw, @oDlg, aBotones),oDlg:Move( oDlg:nTop, ( WndWidth( GetDesktopWindow() ) / 2 ) - ( oDlg:nWidth / 2 ), oDlg:nWidth, oDlg:nHeight, .T. )) // ACTIVATE DIALOG oDlg on INIT (BtnBarNew( oBrw, @oDlg, aBotones),oDlg:Move( 50, ( WndWidth( GetDesktopWindow() ) / 2 ) - ( oDlg:nWidth ...
by José Camilo
Tue Aug 01, 2023 1:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre centrar un dialogo.
Replies: 9
Views: 454

Re: Consulta sobre centrar un dialogo.

Prueba asi:

oDlg:Move( 50, ( WndWidth( GetDesktopWindow() ) / 2 ) - ( oDlg:nWidth / 2 ), oDlg:nWidth, oDlg:nHeight, .T. )

y dime si el diálogo se posiciona hacia lo alto de la pantalla, gracias
by Antonio Linares
Mon Jul 31, 2023 4:50 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre centrar un dialogo.
Replies: 9
Views: 454

Re: Consulta sobre centrar un dialogo.

Estimado José,

Prueba así:

oDlg:Move( oDlg:nTop, ( WndWidth( GetDesktopWindow() ) / 2 ) - ( oDlg:nWidth / 2 ), oDlg:nWidth, oDlg:nHeight, .T. )
by Antonio Linares
Sun Jul 30, 2023 9:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta sobre centrar un dialogo.
Replies: 9
Views: 454

Re: Desaparecen controles en Folder - Ayuda por favor

... Los controles que se quedaban fuera 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" ...
by JESUS MARIN
Tue Jul 18, 2023 5:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Desaparecen controles en Folder - SOLUCIONADO
Replies: 65
Views: 2461

To Rao : Panel Scroll position Falled

... but much further down I use the nRowItem variable to save my position every time I insert a row in the right panel and every time I add nRowItems+=nHeight+2
by Silvio.Falconi
Tue Jun 13, 2023 7:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: To Rao : Panel Scroll position Falled
Replies: 1
Views: 141

Re: BtnBmp and oPopup

>FW_DrawImage( hDC, "c:\fwh\bitmaps\alphabmp\ichat.bmp", {::nHeight-30, ::nWidth-25, ::nHeight - 10, ::nWidth-5}, .t. ) for me it's no good perhaps... data hBmpPop on METHOD Paint() CLASS TBtnBmp if ::oPopup != nil if ::hBmpPop != 0        DrawBitmap( ...
by Silvio.Falconi
Wed Jun 07, 2023 8:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: BtnBmp and oPopup
Replies: 4
Views: 420
PreviousNext

Return to advanced search