Search found 46 matches: goleft

Return to advanced search

CLASS modification

... like hSetPos() for setting the horizontal scrollbar position, ScrollHorizontallyBy() for scrolling a certain number of pixels horizontally, GoLeft() and GoRight() for moving left and right, HScroll() for handling horizontal scroll events, and so on. Please note that these are general recommendations ...
by Otto
Tue May 23, 2023 7:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CLASS modification
Replies: 33
Views: 1710

Re: WBrowse - color fondo cabecera y Congelar columnas- consulta

Hola y gracias Karinha por responder,

Pero WBrowse de FWH 21.06 no considera nFreeze en su DATA, y en sus métodos GoLeft y GoRight no existe código para manejar filas congeladas.

Sigo atento y también buscando opciones.

Saludos
by José
Fri Mar 17, 2023 4:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: WBrowse - color fondo cabecera y Congelar columnas- consulta
Replies: 6
Views: 617

Re: Fighting Xbrowse and lozing !!!

... consider a logical Var that toggles this beheavior ? For this specific browse, maybe I can trap the cursor key value and process it to only do a goleft... goright with no processing ? Just thinking, but not able to do it.
by Marc Venken
Fri Dec 30, 2022 12:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fighting Xbrowse and lozing !!!
Replies: 18
Views: 1569

Re: defining a key to a function

Hello Antonio,

Thanks, that works. The GoLeft has number 63234 and the GoRight has 63235. I use the bKeyDown on a window instead of a browse. The window that is opened has seven tabs and on 4 of them there are browses. It also works on Get's
by plantenkennis
Tue Jun 22, 2021 6:28 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: defining a key to a function
Replies: 2
Views: 723

Re: defining a key to a function

René,

Pease try this:

oBrowse:bKeyDown = { | nKey | MsgInfo( nKey ) }

and check if GoLeft and GoRight keys get trapped with that
by Antonio Linares
Mon Jun 21, 2021 9:41 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: defining a key to a function
Replies: 2
Views: 723

Re: Carrusel con tcvrflow

Olá, com o uso de um timer e mais o uso de GoLeft, GoRight, vai conseguir o efeito desejado. #include "FiveWin.ch" function Main() local oWnd, oCF, obar DEFINE WINDOW oWnd FROM 2, 2 TO 40, 96 color CLR_BLACK, CLR_CYAN DEFINE BUTTONBAR ...
by MGA
Mon Jan 14, 2019 1:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Carrusel con tcvrflow
Replies: 4
Views: 1121

Re: Evitar el avance a la izq. en xBrowse

... end of Adjust() method    if ::lLockFreeze      ::nColSel   := ::nFreeze + 1   endif  3. Go to METHOD GoLeftMost(). and find this line at the beginning    ::nColSel := 1  Modify this line as:    ::nColSel   := If( ::lLockFreeze, ...
by nageswaragunupudi
Sun Feb 12, 2017 8:08 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Evitar el avance a la izq. en xBrowse
Replies: 3
Views: 854

Re: Evitar el avance a la izq. en xBrowse

Adhemar. Prueba modificando el method GoLeft() de TxBrowse, de esta manera: METHOD GoLeft( lOffset, lRefresh )  CLASS TXBrowse   ::CancelEdit()   if ::nMarqueeStyle == MARQSTYLE_NOMARQUEE  .or. ( ...
by FranciscoA
Sun Feb 12, 2017 12:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Evitar el avance a la izq. en xBrowse
Replies: 3
Views: 854

Re: A problem to display last column using oBrw:GoRightMost()

... BTNBMP oBtn3 OF oFld:aDialogs[ 1 ] ; ID 302 PIXEL 2007 ; BORDER ; FILENAME c_Pfad1 + "Rechts.Bmp" ; ACTION ( oBrw1:GoRightMost(), oBrw1:GoLeft(), oBrw1:GoRight(), oBrw1:Refresh() ) ; CENTER best regards Uwe :D
by ukoenig
Thu Nov 26, 2015 1:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: A problem to display last column using oBrw:GoRightMost()
Replies: 6
Views: 1745

Re: Congelar columnas en xBrowse

... la libreria. Otra manera, más sencilla es hacer una copia de la class txbrowse al directorio de tu aplicacion, y ahí sustituyes el METHOD Goleft() por el que te muestro mas abajo. En esto colaboramos Rolando y el suscrito, y posteriormente fue perfeccionado por Mr. Nages. Una vez sustituido ...
by FranciscoA
Thu Jun 06, 2013 1:19 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Congelar columnas en xBrowse (Solucionado)
Replies: 9
Views: 1511

Para Antonio: xBrowse nFreeze (APORTE)

... , me he puesto a trabajar en una solución, la cual creo que he encontrado. La he probado bastante y no me ha dado ninguna falla. Ahora el Method GoLeft() Class TXBrowse, detecta si se está utilizando columnas congeladas, y se comporta como lo necesitamos. Si al avanzar hacia la derecha, se ocultan ...
by FranciscoA
Sun May 19, 2013 12:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Para Antonio: xBrowse nFreeze (APORTE)
Replies: 6
Views: 1758

Re: USO DE SCROOL EN MENU RIBBON Y MENU DE IMAGENES

... nRC := GetCursorPos() Local nRow := nRC[1] - oWnd:nTop - 4 IF nRow >25 .and. nRow <188 IF nDelta =120 //Rueda Gira hacia adelante oRbar:GoLeft() // Siendo oRbar el objeto ribbon ElseIf nDelta =-120 //Rueda Gira hacia atras oRbar:GoRight() ENDIF ENDIF Return nil Me cuentas como te resulto ...
by mantonio_08
Fri Dec 21, 2012 2:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: USO DE SCROOL EN MENU RIBBON Y MENU DE IMAGENES
Replies: 5
Views: 960

Re: xbrowse codeblock after every action

I concur with Marcelo, bChange seems to be what you need. The Change() method is called from the GoUp(), GoDown(), GoLeft() and GoRight() methods. If you don't want bChange triggered when moving to another column, then check the value of lRow, it will be .F. when moving to a new ...
by James Bott
Mon Jun 20, 2011 11:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse codeblock after every action
Replies: 3
Views: 599

Re: Devolver Valor a una Columna del Xbrowse Antes de Validar

... If unicompra=0 //Por Defecto cuando es cero lo toma como uno aDatos[oBrw:nat,9]:=1 Else aDatos[oBrw:nat,9]:=uniCompra Endif oBrw:GoRight() oBrw:GoLeft() Endif SQL CLOSE xExi_Suc Else m_Codi:=LeerCodigo(oDlg,oBrw,aDatos) If ! EMPTY(m_codi) xExi_Suc:=oServer:Query("SELECT * FROM exi_suc Where ...
by jbrita
Thu Jun 02, 2011 3:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Devolver Valor a una Columna del Xbrowse Antes de Validar
Replies: 7
Views: 1801

Re: New FTDN September 2009 (9.09)

... ser usada desde funciones, no desde el método Paint(). Por favor, usa FWDispBegin() desde el método Paint(). * Mejora: Nuevos métodos KeyDown(), GoLeft() y GoRight() en la clase TRibbonBar. * Mejora: Se ha añadido soporte para hb_storvds() en xHarbour y versiones antiguas de Harbour. * Mejora: ...
by Antonio Linares
Wed Sep 23, 2009 9:05 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September 2009 (9.09)
Replies: 1
Views: 3115
Next

Return to advanced search