Search found 58 matches: sendkey

Return to advanced search

Email automatico con Thunderbird (Solucionado)

... y asi enviarlos todos de golpe y no tener que esperar. Seria algo asi: hWnd:= FindWindow(0, "Escribir el_asunto_email - Thunderbird" Sendkey(hWnd, VK_CONTROL) SendKey(hWnd, VK_SHIFT) Sendkey(hWnd, VK_ENTER) Pero me falla en los Sendkey(). Alguna pista ? Gracias
by hmpaquito
Fri Mar 04, 2022 11:04 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Email automatico con Thunderbird (Solucionado)
Replies: 0
Views: 249

Re: Ctrl+C

I can't do a search by the title of the browser window either, as it may be different. Maybe you should use the FW_SENDKEY(11, 67) function) ?
by Natter
Thu Feb 04, 2021 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ctrl+C
Replies: 6
Views: 497

Re: Como emular presionar CTRL + CLICK IZQ ?

Hola amigos.
Voy avanzando. Estoy probando la function SendKey(VK_CONTROL), y me funciona para fijar la tecla CONTROL.
Lo que me falta es emular mantener presionado un boton, ejecutar action with SendKey(), y después emular soltar el boton.
Gracias
by FranciscoA
Wed May 09, 2018 2:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como emular presionar CTRL + CLICK IZQ ?
Replies: 7
Views: 1783

Re: Building Harbour 3.4 for BCC outside MSYS

Enrico I have compared the original BuildxM and included almost every possible combination of FW-M libs .. as far as the zip libs .. all I am trying to do is build Tutor01.prg .. nothing in that code that has anything to do with zip. libucrt.lib(pow_impl.obj) : warning LNK4006: __CIpow already defi...
by mastintin
Wed Dec 13, 2017 5:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17194

Re: Building Harbour 3.4 for BCC outside MSYS

What about HB_FUN_SENDKEY and the other 6 unresolved externals ? ... FiveHCM.lib(KEYBRD.obj) : error LNK2019: unresolved external symbol _SendInput referenced in function _HB_FUN_SENDKEY Something wrong in FWH sources. In keybrd.c the function SendInput() is defined only for GNUC: #ifdef __...
by Enrico Maria Giordano
Wed Dec 13, 2017 3:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17194

Re: Building Harbour 3.4 for BCC outside MSYS

Enrico I have compared the original BuildxM and included almost every possible combination of FW-M libs .. as far as the zip libs .. all I am trying to do is build Tutor01.prg .. nothing in that code that has anything to do with zip. libucrt.lib(pow_impl.obj) : warning LNK4006: __CIpow already defin...
by Rick Lipkin
Wed Dec 13, 2017 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Building Harbour 3.4 for BCC outside MSYS
Replies: 87
Views: 17194

Re: SendKey() y Printer en Fivelinux

George,

Muy bien :-)

Si, por favor, envíamelo. Gracias
by Antonio Linares
Thu Feb 11, 2016 10:27 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654

Re: SendKey() y Printer en Fivelinux

Antonio, Lo que me enviaste funciona perfecto dentro de la clase GET usando solo el codigo case nKey == K_ENTER ::oWnd:aControls[nControl]:SetFocus() Mas adelante integrare el metodo a la clase TWindow para hacerlo mas generico. Si quieres te envio a tu correo las libreria de FiveLinux que genere pa...
by George
Thu Feb 11, 2016 10:22 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654

Re: SendKey() y Printer en Fivelinux

Raspbian is a distribution for ARM processors. Raspbian cannot run in VirtualBox.


I don't have a Raspberri at hand... :-(
by Antonio Linares
Thu Feb 11, 2016 10:09 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654

Re: SendKey() y Printer en Fivelinux

George, Prueba a añadir este método en la clase TWindow: METHOD GoNextCtrl( hWnd ) CLASS TWindow   local nAt := AScan( ::aControls, { | oCtrl | oCtrl:hWnd == hWnd } )   if nAt != 0      if nAt < Len( ::aControls )         ::aControls[ nAt + 1 ]:SetFocus&#...
by Antonio Linares
Thu Feb 11, 2016 9:32 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654

Re: SendKey() y Printer en Fivelinux

George,

la función keybd_event() es sólo para Windows. Tendríamos que probar de la forma que comentan en esos mensajes.

Voy a ver si puedo instalar Raspbian 32 bits en VirtualBox
by Antonio Linares
Thu Feb 11, 2016 9:20 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654

Re: SendKey() y Printer en Fivelinux

Antonio, He estado revisando el codigo get de Fivelinux y puedo interceptar ahi ciertas teclas pero lo que necesito hacer es saltar de un control al proximo control cuando se presione la tecla [ENTER] En Fivewin usamos "::oWnd:GoNextCtrl( ::hWnd ). Tenemos un metodo equivalente en Fivelinux? Sa...
by George
Thu Feb 11, 2016 9:17 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654

Re: SendKey() y Printer en Fivelinux

Gracias Antonio por tus sugerencias. He visto en el foro el siguiente codigo, referente a SendKey(), que tu publicaste para Fivewin: HB_FUNC( FW_SENDKEY ) { if( hb_parni( 2 ) == 0 ) keybd_event( ( BYTE ) hb_parni( 1 ), ( BYTE ) hb_parni( 2 ), KEYEVENTF_EXTENDEDKEY | ...
by George
Thu Feb 11, 2016 9:05 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654

Re: SendKey() y Printer en Fivelinux

George,

Que distribución de Linux estás usando ? Debian, Ubuntu, ... ?

32 ó 64 bits ?
by Antonio Linares
Thu Feb 11, 2016 8:26 pm
 
Forum: FiveLinux / FiveDroid (Android)
Topic: SendKey() y Printer en Fivelinux
Replies: 11
Views: 2654
Next

Return to advanced search