... turning off the engine and clearing the dashboard.
3. Navigation Methods (Cursor Movement and Position):
GoTop(), GoBottom(), GoUp(), GoDown(), PageUp(), PageDown(), Skip(): These methods provide different ways to move the browse cursor through the data. They are all interconnected as different ...
Search found 55 matches: pageup
Searched query: pageup
- Fri Jan 24, 2025 11:19 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4843
- Fri Jan 24, 2025 10:38 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4843
Re: Using new Class TDeepSeek for documenting
... of rows to go down.
nKey: NUMERIC - Key code.
Return Value: None
Usage Example: (Internal use only - method version for codeblock usage)
279. PageUp( nLines )
Description: Accessor for PageUp (same as DATA member, method version for codeblock usage).
Parameters:
nLines: NUMERIC - Number of ...
nKey: NUMERIC - Key code.
Return Value: None
Usage Example: (Internal use only - method version for codeblock usage)
279. PageUp( nLines )
Description: Accessor for PageUp (same as DATA member, method version for codeblock usage).
Parameters:
nLines: NUMERIC - Number of ...
- Fri Jan 24, 2025 10:37 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4843
Re: Using new Class TDeepSeek for documenting
... oBrw:GoDown() // Moves down one row.
oBrw:GoDown( 5 ) // Moves down five rows.
content_copy
download
Use code with caution.
Harbour
206. PageUp( nLines )
Description: Moves the browse cursor up by a page (number of visible data rows).
Parameters:
nLines: NUMERIC - Number of lines to page ...
oBrw:GoDown( 5 ) // Moves down five rows.
content_copy
download
Use code with caution.
Harbour
206. PageUp( nLines )
Description: Moves the browse cursor up by a page (number of visible data rows).
Parameters:
nLines: NUMERIC - Number of lines to page ...
- Fri Jan 17, 2025 10:41 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Using new Class TDeepSeek for documenting
- Replies: 29
- Views: 4843
Re: Using new Class TDeepSeek for documenting
... ScrollDown()` | Scrolls the bitmap down. |
| `ScrollLeft()` | Scrolls the bitmap left. |
| `ScrollRight()` | Scrolls the bitmap right. |
| `PageUp()` | Scrolls the bitmap up by a page. |
| `PageDown()` | Scrolls the bitmap down by a page. |
| `PageLeft()` | Scrolls the bitmap left by a page ...
| `ScrollLeft()` | Scrolls the bitmap left. |
| `ScrollRight()` | Scrolls the bitmap right. |
| `PageUp()` | Scrolls the bitmap up by a page. |
| `PageDown()` | Scrolls the bitmap down by a page. |
| `PageLeft()` | Scrolls the bitmap left by a page ...
- Fri Mar 19, 2021 12:59 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 2102: XBrowse:SetMultiSelectCol()
- Replies: 17
- Views: 3676
Re: FWH 2102: XBrowse:SetMultiSelectCol()
Ariel wrote:Mr. Rao,
I ask again, when paging with pageup / pagedown, is the selection preserved or is it lost?
regards.
Yes, preserved.
Sorry, I did not see your previous question.
- Fri Mar 19, 2021 11:10 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: FWH 2102: XBrowse:SetMultiSelectCol()
- Replies: 17
- Views: 3676
Re: FWH 2102: XBrowse:SetMultiSelectCol()
Mr. Rao,
I ask again, when paging with pageup / pagedown, is the selection preserved or is it lost?
regards.
I ask again, when paging with pageup / pagedown, is the selection preserved or is it lost?
regards.
- Sat Aug 08, 2020 10:12 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: xbrowse fwh2006 sqlrdd erro
- Replies: 24
- Views: 5299
Re: xbrowse fwh2006 sqlrdd erro
usando SQLRDD
Tabela 110.000 registros
seek esta demorado um pouco (1912 normal)
PageDown pressionando 10x seguidos trava o xbrowse por 20segundos
PageUP não trava, mais esta mais lento que a versão 1912
Tabela 110.000 registros
seek esta demorado um pouco (1912 normal)
PageDown pressionando 10x seguidos trava o xbrowse por 20segundos
PageUP não trava, mais esta mais lento que a versão 1912
- Tue Oct 15, 2019 7:09 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Preview Window size
- Replies: 6
- Views: 1026
Re: Preview Window size
... WINDOW ::oWnd MAXIMIZED ;
ON RESIZE ( ::PaintMeta(), ::ResizeListView() ) ;
ON UP ::VScroll( GO_UP ) ;
ON DOWN ::VScroll( GO_DOWN ) ;
ON PAGEUP ::VScroll( GO_UP, GO_PAGE) ;
ON PAGEDOWN ::VScroll( GO_DOWN, GO_PAGE) ;
ON LEFT ::HScroll( GO_LEFT ) ;
ON RIGHT ::HScroll( GO_RIGHT ) ;
ON ...
ON RESIZE ( ::PaintMeta(), ::ResizeListView() ) ;
ON UP ::VScroll( GO_UP ) ;
ON DOWN ::VScroll( GO_DOWN ) ;
ON PAGEUP ::VScroll( GO_UP, GO_PAGE) ;
ON PAGEDOWN ::VScroll( GO_DOWN, GO_PAGE) ;
ON LEFT ::HScroll( GO_LEFT ) ;
ON RIGHT ::HScroll( GO_RIGHT ) ;
ON ...
- Sun Jan 14, 2018 6:37 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: SCROLLs en MDI
- Replies: 4
- Views: 1373
Re: SCROLLs en MDI
Xevi,
> Control de los SCROLLS
Tienes que programarlo. Ejemplo (busca en FWH/samples por *.prg conteniendo PAGEUP):
::oWnd:oVScroll:SetRange( nV1,nV2 )
::oWnd:oVScroll:bGoDown := {|| ::VScroll() }
::oWnd:oVScroll:bGoUp := {|| ::VScroll() }
::oWnd:oVScroll:bPageUp := {|| ::VScrollPgUp ...
> Control de los SCROLLS
Tienes que programarlo. Ejemplo (busca en FWH/samples por *.prg conteniendo PAGEUP):
::oWnd:oVScroll:SetRange( nV1,nV2 )
::oWnd:oVScroll:bGoDown := {|| ::VScroll() }
::oWnd:oVScroll:bGoUp := {|| ::VScroll() }
::oWnd:oVScroll:bPageUp := {|| ::VScrollPgUp ...
- Fri Apr 12, 2013 6:15 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Error con un programa de fivewin en una maquina virtual
- Replies: 47
- Views: 11037
Re: Error con un programa de fivewin en una maquina virtual
... curSelPagPrev , "TIPO" => "1", "FLAGS1" => ACC_SHIFT , "TECLA1" => VK_PRIOR , "FLAGS2" => nil , "TECLA2" => nil , "ACCION" => { || ::oFuente:pageUp( .t. )}, "WHEN" => nil }, ;
{ "DESCRIP" => hIdioma:curSelIniArch , "TIPO" => "1", "FLAGS1" => ACC_CTRLSHF, "TECLA1" => VK_HOME , "FLAGS2" => nil ...
{ "DESCRIP" => hIdioma:curSelIniArch , "TIPO" => "1", "FLAGS1" => ACC_CTRLSHF, "TECLA1" => VK_HOME , "FLAGS2" => nil ...
- Tue Aug 14, 2012 6:16 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Usando GUI y CUI juntos
- Replies: 26
- Views: 10881
Re: Usando GUI y CUI juntos
... if nKey == 5
oTbr:up()
elseif nKey == 24
oTbr:down()
elseif nKey == 19
oTbr:left()
elseif nKey == 4
oTbr:right()
elseif nKey == 18
oTbr:pageup()
elseif nKey == 3
oTbr:pagedown()
elseif nKey == 1
oTbr:gotop()
elseif nKey == 6
oTbr:gobottom()
else
return(.f.)
endif
return(.t ...
oTbr:up()
elseif nKey == 24
oTbr:down()
elseif nKey == 19
oTbr:left()
elseif nKey == 4
oTbr:right()
elseif nKey == 18
oTbr:pageup()
elseif nKey == 3
oTbr:pagedown()
elseif nKey == 1
oTbr:gotop()
elseif nKey == 6
oTbr:gobottom()
else
return(.f.)
endif
return(.t ...
- Mon Apr 09, 2012 12:37 pm
- Forum: FiveLinux / FiveDroid (Android)
- Topic: Lectura del teclado con convinación de teclas
- Replies: 2
- Views: 1391
Re: Lectura del teclado con convinación de teclas
... fpx:= nKey, lModal:=.F., oDlg:End() ), ) }
Function fTeclaCombinacion(nkey,nTeclaCombinacion)
Local lRetorno:=.F.
if ascan({K_HOME,K_END,K_PAGEUP,K_PAGEDOWN,K_UP,K_DOWN,K_TAB,K_LEFT,K_RIGHT,K_DEL,K_BS,K_SHIFT,K_RSHIFT,K_CTRL,K_UPPER,K_KEYPAD0,K_ALT,K_ALT_GR,K_F_ESPECIAL},nkey)>0 ...
Function fTeclaCombinacion(nkey,nTeclaCombinacion)
Local lRetorno:=.F.
if ascan({K_HOME,K_END,K_PAGEUP,K_PAGEDOWN,K_UP,K_DOWN,K_TAB,K_LEFT,K_RIGHT,K_DEL,K_BS,K_SHIFT,K_RSHIFT,K_CTRL,K_UPPER,K_KEYPAD0,K_ALT,K_ALT_GR,K_F_ESPECIAL},nkey)>0 ...
- Wed Nov 03, 2010 1:01 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: TDolphin Clase para manejar MySql
- Replies: 74
- Views: 28402
Re: TDolphin Clase para manejar MySql
... source\classes\XBROWSE.PRG => (b)TXBROWSE:TXBROWSE(387)
Called from: => TXBROWSE:SKIP(0)
Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:PAGEUP(2676)
...
//----------------------------------------------------------------------------------------------------
y este error al llegar al BOTTOM ...
Called from: => TXBROWSE:SKIP(0)
Called from: .\source\classes\XBROWSE.PRG => TXBROWSE:PAGEUP(2676)
...
//----------------------------------------------------------------------------------------------------
y este error al llegar al BOTTOM ...
- Mon Sep 20, 2010 2:07 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Pritpal, HBIDE developer, assists us to use it with FWH
- Replies: 293
- Views: 118021
Re: Pritpal, HBIDE developer, assists us to use it with FWH
... implementation supports drag-drop features.
2010-09-10 19:10 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideedit.prg
! Alt+PageUp/Down now position the cursor to next line after
function ..() declaration line.
* contrib/hbide/ideshortcuts.prg
+ Added: Alt+PageDown, Alt ...
2010-09-10 19:10 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbide/ideedit.prg
! Alt+PageUp/Down now position the cursor to next line after
function ..() declaration line.
* contrib/hbide/ideshortcuts.prg
+ Added: Alt+PageDown, Alt ...
- Fri Sep 10, 2010 6:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Pritpal, HBIDE developer, assists us to use it with FWH
- Replies: 293
- Views: 118021
Re: Pritpal, HBIDE developer, assists us to use it with FWH
yeangpumpeng wrote:The Key Combination in ED for WIndows is
CTRL + PAGE UP or PAGE DOWN
Yes the last was for the FW User
Thank for the answer
Done.
Alt+PageUp Alt+PageDown : defaults.
You can change to any key with keyboard mappings.
Not committed yet, though.