ENTER desde otro control SOLUCIONADO

Post Reply
User avatar
Willi Quintana
Posts: 1027
Joined: Sun Oct 09, 2005 10:41 pm
Location: Cusco - Perú
Been thanked: 1 time
Contact:

ENTER desde otro control SOLUCIONADO

Post by Willi Quintana »

HOla amigos,,,,,
Tengo un GET cuyo valor ser llenado desde otro control:
REDEFINE oVar VAR cVar ......
...
...
REDEFINE BTNBMP oAct ACTION (cVar := "12345", oVar:Refresh(), ????? ) ...... <--- aqui en ???? con le hago para simular un ENTER en oVar

GRacias....
Last edited by Willi Quintana on Fri Mar 21, 2025 12:00 am, edited 1 time in total.
User avatar
Antonio Linares
Site Admin
Posts: 42716
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Has thanked: 93 times
Been thanked: 103 times
Contact:

Re: ENTER desde otro control

Post by Antonio Linares »

Willi,

Prueba con oVar:KeyChar( VK_ENTER )
regards, saludos

Antonio Linares
www.fivetechsoft.com
FiveWiDi
Posts: 1267
Joined: Mon Oct 10, 2005 2:38 pm
Has thanked: 4 times
Been thanked: 10 times

Re: ENTER desde otro control

Post by FiveWiDi »

Willi Quintana wrote: Wed Mar 19, 2025 1:36 am HOla amigos,,,,,
Tengo un GET cuyo valor ser llenado desde otro control:
REDEFINE oVar VAR cVar ......
...
...
REDEFINE BTNBMP oAct ACTION (cVar := "12345", oVar:Refresh(), ????? ) ...... <--- aqui en ???? con le hago para simular un ENTER en oVar

GRacias....
Prueba esto:

Para un GET
oVar:cText( "12345" )
oVar:Refresh()

Para un SAY
oVar:Varput( "12345" )
oVar:Refresh()
Un Saludo
Carlos G.

FiveWin 25.01 + Harbour 3.2.0dev (r2502110321), BCC 7.7 Windows 10
JESUS MARIN
Posts: 180
Joined: Wed Jan 02, 2019 8:36 am

Re: ENTER desde otro control

Post by JESUS MARIN »

Buenas

Si solo quieres simular el ENTER en el Get, prueba :

Code: Select all | Expand

 ACTION (cVar := "12345", oVar:Refresh(), EVAL( oVar:bLostFocus ) )
Jesús Marín
deumare@gmail.com
MGA
Posts: 1269
Joined: Mon Feb 25, 2008 2:54 pm
Location: Brasil/PR/Maringá
Contact:

Re: ENTER desde otro control

Post by MGA »

ACTION (cVar := "12345", oVar:Refresh(), EVAL( oVar:bValid ) )
ubiratanmga@gmail.com

FWH24.04
BCC7.3
HARBOUR3.2
xMate
Pelles´C
TDolphin
User avatar
Willi Quintana
Posts: 1027
Joined: Sun Oct 09, 2005 10:41 pm
Location: Cusco - Perú
Been thanked: 1 time
Contact:

Re: ENTER desde otro control SOLUCIONADO

Post by Willi Quintana »

Estimadoa migos,
Gracias por los aportes, probe todos, el mas eficiente es el de MGA, gracias mil.
ACTION (cVar := "12345", oVar:Refresh(), EVAL( oVar:bValid ) )
Post Reply