Search found 59 matches: scrollpanel

Return to advanced search

Re: Create a Panel width a text

... in a main window and do them as if it were a dashboard, in the past I used two TscrollPanels but I saw that when the window was iconized the left scrollpanel lost the scroll, because ui now I'm trying with the explorerbar hoping it might work and insert a new method to recalc the position nTop ...
by Silvio.Falconi
Tue Jan 09, 2024 10:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3192

Re: Select one btnbmp into a scrollpanel

Perhaps i resolved with aBtnEle[n]:cargo:= lActive aBtnEle[n]:bAction :={ |o| lActive := !lActive, ; o:cargo:= lActive,; o:refresh(),; Set_items_Active(oElements,o:cargo,o),; nElemento:= val(nProduct) } Function Set_items_Active(oItem,lActive,oBTn) local oCtrl for each oCtrl in oItem:aControls oCtrl...
by Silvio.Falconi
Mon Jun 12, 2023 5:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select one btnbmp into a scrollpanel
Replies: 1
Views: 105

Select one btnbmp into a scrollpanel

I have some buttons on a scrollpanel https://i.postimg.cc/h4zG0Jp9/ff.jpg I created the buttons with the Btnbmp class I want that when I press one it stays selected I made lActive:= .f. For n=1 to Len(aElements) cDesc ...
by Silvio.Falconi
Mon Jun 12, 2023 5:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select one btnbmp into a scrollpanel
Replies: 1
Views: 105

Re: genblock

... first scrollable panel on First Scroll Panel If I select one button it return allways 04 on source on a for next cicle I create the buttons into scrollpanel and the assign an action for each button aBtnEle[n]:bAction :={ || (Elemento:= nProduct ,msginfo(nProduct))} nProduct id the code of an ...
by Silvio.Falconi
Mon Jun 12, 2023 5:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: genblock
Replies: 5
Views: 253

PaintBorder of Btnbmp ( fwteam)

... ::hDC )               endif  now seem run ok the border color https://i.postimg.cc/GpgQV8XH/hh.gif I set the btnbmps into the scrollpanel with :nClrBorder := { || (IIF(ocontrol:lMOver,CLR_BLUE,CLR_HGRAY)) }
by Silvio.Falconi
Sat Jun 10, 2023 4:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: PaintBorder of Btnbmp ( fwteam)
Replies: 1
Views: 151

add items on ScrollPanels

I need to add items to a scrollpanel initially the dialog inserts only one item, but if the user press the 2 or 3 button he can insert 2 or 3 items https://i.postimg.cc/QdQw6GFV/gg.png the test I made add the items the ...
by Silvio.Falconi
Thu Jun 08, 2023 9:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: add items on ScrollPanels
Replies: 2
Views: 165

Re: Resize a tpanel

For ScrollPanel, please set :oRightMargin and :oBottomMargin, to make it resizable when container window/dialog is resized. Sample: #include "fivewin.ch"function Main()   local oWnd, oPanel, n   DEFINE WINDOW ...
by Silvio.Falconi
Sun May 21, 2023 4:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize a tpanel
Replies: 5
Views: 339

Re: Resize a tpanel

For ScrollPanel, please set :oRightMargin and :oBottomMargin, to make it resizable when container window/dialog is resized. Sample: #include "fivewin.ch"function Main()   local oWnd, oPanel, n  ...
by nageswaragunupudi
Sun May 21, 2023 3:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Resize a tpanel
Replies: 5
Views: 339

Re: a Main wnd with two ScrollPanel +buttonbar+msgbar

Jimmy wrote:hi Silvo,
instead of
Code: Select all  Expand view
  oDash_right:nWidth  := oWnd:nWidth-520 ,;

try
Code: Select all  Expand view
  oDash_right:nWidth  := oWnd:nWidth-oDash_Left:nWidth -30 ,;


p.s. what du you think about a SPLITTER :?:

splitter ok but it must be hide
by Silvio.Falconi
Fri Feb 17, 2023 11:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a Main wnd with two ScrollPanel +buttonbar+msgbar
Replies: 2
Views: 188

Re: a Main wnd with two ScrollPanel +buttonbar+msgbar

hi Silvo,
instead of
Code: Select all  Expand view
  oDash_right:nWidth  := oWnd:nWidth-520 ,;

try
Code: Select all  Expand view
  oDash_right:nWidth  := oWnd:nWidth-oDash_Left:nWidth -30 ,;


p.s. what du you think about a SPLITTER :?:
by Jimmy
Fri Feb 17, 2023 10:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a Main wnd with two ScrollPanel +buttonbar+msgbar
Replies: 2
Views: 188

a Main wnd with two ScrollPanel +buttonbar+msgbar

I wish create a window with two srollpanel https://i.postimg.cc/mgR0KQv1/gg.jpg The first scrollpanel ( a left) is ok . the second ScrollPanel ( at right) I not see the scroll ( because I not Know the right position) Can you help me pls ? the test #include "fivewin.ch"REQUEST ...
by Silvio.Falconi
Fri Feb 17, 2023 9:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a Main wnd with two ScrollPanel +buttonbar+msgbar
Replies: 2
Views: 188

Re: Creating a small Dashboard with scrollpanel

Change this line
Code: Select all  Expand view

aBtn[n]:= PanelBox(oPanel,nRow,nCol,oPanel:nWidth-20,120,n )
 

with
Code: Select all  Expand view

aBtn[n]:= PanelBox(oPanel,nRow,nCol,oPanel:nWidth-20,120 + nRow,n )
 
by cnavarro
Fri Feb 10, 2023 1:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a small Dashboard with scrollpanel
Replies: 1
Views: 200

Creating a small Dashboard with scrollpanel

...    RELEASE oBoldTitle,oFontTitle     return nil  I not understood why it not whow the other elements on scrollPanel
by Silvio.Falconi
Fri Feb 10, 2023 10:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Creating a small Dashboard with scrollpanel
Replies: 1
Views: 200

Re: Vertical and Horizontal Scroll Bar Processing

...  @ 5, 2 GET cSurName OF oScrollPanel   oScrollPanel:SetRange()return nil https://github.com/FiveTechSoft/screenshots/blob/master/scrollpanel.gif?raw=true
by Antonio Linares
Tue Sep 20, 2022 11:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Vertical and Horizontal Scroll Bar Processing
Replies: 2
Views: 322

Re: Ayuda Orientacion Sobre Datos en Dialogo

La solución que propone Joao considero que es la más práctica. Otra posible es poner un ScrollPanel sobre el diálogo y los controles sobre él, aunque quizás un poco menos "visual" para el usuario ya que de primera vista no se verían todos los controles.
by cnavarro
Tue Aug 16, 2022 2:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda Orientacion Sobre Datos en Dialogo
Replies: 12
Views: 734
Next

Return to advanced search

cron