Search found 498 matches: pressing

Return to advanced search

Re: How to prevent xBrowse to move right after pressing Enter?

Sorry, it doesn't work. Selection keeps moving right when I press Enter. :-(

EMG
by Enrico Maria Giordano
Tue Sep 29, 2020 12:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to prevent xBrowse to move right after pressing Enter?
Replies: 11
Views: 794

Re: How to prevent xBrowse to move right after pressing Enter?

Have you tried with lEnterKey2Edit := .T. and/or nMoveType := 5 ?
by cnavarro
Tue Sep 29, 2020 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to prevent xBrowse to move right after pressing Enter?
Replies: 11
Views: 794

Re: How to prevent xBrowse to move right after pressing Enter?

Unfortunately, I need this without using EDIT_GET. :-(

EMG
by Enrico Maria Giordano
Tue Sep 29, 2020 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to prevent xBrowse to move right after pressing Enter?
Replies: 11
Views: 794

Re: How to prevent xBrowse to move right after pressing Enter?

Enrico, The test keeps the selected cell- columnposition after celledit LOCAL nColPos := 1......WITH OBJECT oBrw     FOR I := 1 TO 5 // total defined columns           :aCols[I]:nEditType := EDIT_GET            :aCols[I]:bOnPostEdit := { | oCol, xVal, nKey | ;                   ...
by ukoenig
Tue Sep 29, 2020 10:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to prevent xBrowse to move right after pressing Enter?
Replies: 11
Views: 794

Re: How to prevent xBrowse to move right after pressing Enter?

Thank you. Unfortunately, it doesn't work. :-(

EMG
by Enrico Maria Giordano
Tue Sep 29, 2020 7:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to prevent xBrowse to move right after pressing Enter?
Replies: 11
Views: 794

Re: How to prevent xBrowse to move right after pressing Enter?

Una idea :oops:
y si al final de la validación devuelves el foco a la misma columna.

Code: Select all  Expand view

......
oCol:bOnPostEdit   = { | oCol, xVal, nKey | If( nKey == VK_RETURN, (....,oBrw:GoToCol( oCol )) ,) }
.....
 
by leandro
Tue Sep 29, 2020 2:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to prevent xBrowse to move right after pressing Enter?
Replies: 11
Views: 794

New FTDN August/Agosto 2020 (FWH 20.08)

... cExpression, [uVal], [@uRet] ) --> lValid Optional 3rd new param by ref contains the result on evaluation of the expression. * xbrowser.prg: Pressing Ctrl-E + Ctrl-X enables entering any expression that will be evaluated and result displayed. In the expression, we can use variables oBrw and ...
by Antonio Linares
Sun Sep 20, 2020 11:38 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2020 (FWH 20.08)
Replies: 3
Views: 2312

Re: Select in the xBrowse cell

If you want to copy only a part of the text of a cell, that is the only way.

Pressing Ctrl-C copies full contents of the highlighted cell when nMarqueeStyle <= 3 and the entire row when nMarqueeStyle >= 4.
by nageswaragunupudi
Wed Sep 02, 2020 2:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select in the xBrowse cell
Replies: 2
Views: 349

Selectecing mutiple cells in excel

... time (35sec) I was thinking to do a multiple select, and put than only 1 time tteh condition on it. How can I select multiple cells like you do by pressing CTRL while selecting cells in excel? I was thinking by using the UNION-method, but can't get it to work. :cry:
by Marc Vanzegbroeck
Thu Aug 13, 2020 8:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Selectecing mutiple cells in excel
Replies: 8
Views: 969

Re: FWH 1808: Dialog as Mdichild

If the dialog is activated as normal, when pressing <Tab>, the sequence of active controls is: 1. Checkbox Switch-1 2. Checkbox Switch-2 3. GET cVar1 4. GET cVar2 5. Button This is the normal operation. But if the dialog is activated as ...
by Max HK
Sun Aug 09, 2020 6:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 1808: Dialog as Mdichild
Replies: 14
Views: 4124

Re: Combinacion de teclas en un GET

Thanks Mr. Rao, I had solved it by pressing only the + key with this code. oDlg:bKeydown := {|nKey| IIF(nKey == VK_ADD,(cCodigo:=NextRecord("Emp",2),MsgInfo("El registro siguiente sera " + cCodigo) ...
by jvtecheto
Sun May 31, 2020 3:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Combinacion de teclas en un GET
Replies: 10
Views: 1469

Re: How to use XBROWSE lKinetic and bLClicked in the same time?

... row (Kinetic work). The 6th column cannot slice (Kinetic doesn't work) and action as option 1. I understand that the mobile os can accept level of pressing on screen but if we know the hold press (as kinetic behavior), it can work as mobile. Try again. You flip with your fingers and the browse ...
by dutch
Wed May 13, 2020 3:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to use XBROWSE lKinetic and bLClicked in the same time?
Replies: 5
Views: 912

Alt+Enter in the MultiGet object

Hi,

In the MultiGet object, I need to handle pressing Alt+Enter. However, if the Alt (18) key is pressed, the bKeyDown code block is not executed. How do I do this ?
by Natter
Fri Apr 03, 2020 8:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Alt+Enter in the MultiGet object
Replies: 0
Views: 273
PreviousNext

Return to advanced search