Search found 444 matches: vscroll

Return to advanced search

Re: New FTDN April 2024 (FWH 24.04)

... enfoque recto se dibujará dentro del botón. * XBrowse: - Cuando ::lDrawBorder es .T., el borde no se dibujaba en la parte derecha e inferior si VScroll y HScroll son visibles. Solucionado ahora. Ahora, el borde se dibuja un píxel fuera del control de navegación (Browse). - Nuevo: Si ::lDrawBorderIn ...
by Antonio Linares
Wed May 01, 2024 7:04 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 432

New FTDN April 2024 (FWH 24.04)

... How deep the focusrect is to be drawn inside the button. * XBrowse: - When ::lDrawBorder is .t., border was not being drawn on right and bottom if VScroll and HScroll are visible. Fixed now. Now, the border is drawn one pixel outside the browse control. - New: If ::lDrawBorderIn is set to .t., ...
by Antonio Linares
Wed Apr 24, 2024 7:14 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2024 (FWH 24.04)
Replies: 1
Views: 432

Re: Create a Panel width a text

... MEMOTEXT := alltrim( cMsg ) @ oPanel2:nTitleHeight+5, 10 GET oText VAR MEMOTEXT SIZE oPaneltext:nWidth-2, oPaneltext:nHeight-40 PIXEL MEMO NO VSCROLL READONLY of oPaneltext then do you have try to click collapse button ?
by Silvio.Falconi
Mon Feb 26, 2024 8:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3235

Re: xbrowser no muestra el scroll

Modifica esta línea:

CONTROL "", 112, "ListBox", LBS_SORT|LBS_NOTIFY|WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159

asi:

CONTROL "", 112, "TXBrowse", WS_VSCROLL|WS_TABSTOP, 28, 131, 323, 159
by Antonio Linares
Wed Dec 13, 2023 10:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser no muestra el scroll
Replies: 7
Views: 609

Re: xbrowser no muestra el scroll

Antonio Linares wrote:Estimado Gustavo,

Has especificado WS_VSCROLL como estilo en el recurso ?


no se donde hay qe ponerlo, uso pelesC
agrego una imagen

https://photos.app.goo.gl/ca3rTjAHJzk7Kkn19
by goosfancito
Wed Dec 13, 2023 9:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser no muestra el scroll
Replies: 7
Views: 609

Re: xbrowser no muestra el scroll

Estimado Gustavo,

Has especificado WS_VSCROLL como estilo en el recurso ?
by Antonio Linares
Wed Dec 13, 2023 8:59 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: xbrowser no muestra el scroll
Replies: 7
Views: 609

xbrowse Border

... only on left and up and down of the xbrowse If I make oBrw:lVScroll := .f. oBrw:lhScroll := .f. the border is painted good but I need to use Vscroll https://i.postimg.cc/1zwPXZ0g/lll.png I think we need to tell the xbrowse class that when there is vertical scrolling the border ...
by Silvio.Falconi
Fri Nov 10, 2023 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse Border
Replies: 1
Views: 282

Re: Scroller in MultiGET()

? oGet:winStyle( WS_VSCROLL )
by nageswaragunupudi
Sun Mar 19, 2023 9:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Scroller in MultiGET()
Replies: 5
Views: 552

Re: Problem Xbrowser Border

... resort to these tricks , while the xbrowse class should draw the border even after the vertical scroll ? oldest xbrowse made the border after the Vscroll, What is changed ?
by Silvio.Falconi
Fri Mar 03, 2023 10:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem Xbrowser Border
Replies: 11
Views: 1055

Re: DIALOG NOCAPTION no funciona con XIMAGE

// RESOURCE SCRIPT generated by "Pelles C for Windows, version 8.00". #include <windows.h> #include <commctrl.h> #include <richedit.h> LANGUAGE LANG_NEUTRAL,SUBLANG_NEUTRAL PACIENTE_FICHA DIALOG DISCARDABLE 119, 121, 559, 410 STYLE WS_CHILD|DS_3DLOOK|WS_SYSMENU|WS_VISIBLE...
by Willi Quintana
Wed Oct 12, 2022 1:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: DIALOG NOCAPTION no funciona con XIMAGE
Replies: 17
Views: 1584

Re: Test Windows Mdi with panel right

... interna de la ventana en modo MDI, si creas una ventana mdichild se posiciona en el área gris que tienes a los lados tendrá el scrolling hscroll y vscroll. Di un ejemplo porque tomaría una clase como la tbuttonbar que no afecta el área interna de la ventana mdi. Si usa la solución de Cristóbal, ...
by Silvio.Falconi
Tue May 03, 2022 10:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test Windows Mdi with panel right
Replies: 10
Views: 724

Re: Test Windows Mdi with panel right

...      local oWnd, oBarRight, oBar           SetGetColorFocus()           DEFINE WINDOW oWnd MDI TITLE "test panel on dx"  HSCROLL VSCROLL           DEFINE BUTTONBAR oBarRight OF oWnd SIZE 200,32 2007 RIGHT           DEFINE BUTTONBAR oBar OF oWnd SIZE 100,32 2007                 ...
by Silvio.Falconi
Mon May 02, 2022 11:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test Windows Mdi with panel right
Replies: 10
Views: 724

Re: Borde plano en custom control

Gracias por la contestación. En la clase original de Paco García el estilo es: ::nStyle = nOR( WS_CHILD, WS_VISIBLE, WS_CLIPSIBLINGS, WS_CLIPCHILDREN, WS_TABSTOP, WS_VSCROLL, WS_BORDER ) Probando a quitar el WS_BORDER me queda el control ... sin el borde. De esta manera: https://www.alanit&#...
by José Luis Sánchez
Sun Dec 19, 2021 3:27 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Borde plano en custom control
Replies: 11
Views: 1296

Re: We Need a FiveWin Resource Editor

I would also prefer a FW solution, but the editor is not ready sofar. Maybe a other idea... Just thinking ... RC code looks like this : omzetdlg DIALOG 6, 19, 797, 426 STYLE DS_MODALFRAME | WS_POPUP | WS_CAPTION | WS_SYSMENU CAPTION "Superteksten" FONT 8, "Arial" { DEFPUSHBUTTON ...
by Marc Venken
Mon Jul 19, 2021 2:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: We Need a FiveWin Resource Editor
Replies: 3
Views: 582

Re: galería de imágenes

Antonio,

If I change the Windows for the Dialog I will loss the VScroll feature that is very important for me.

RPreview is also a non modal window but it remains on top of the screen: How can I do this ?

Regards,
by José Luis Sánchez
Fri Jan 15, 2021 6:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: galería de imágenes
Replies: 52
Views: 17064
Next

Return to advanced search

cron