Search found 8 matches: keyseek

Return to advanced search

Trying to create a Virtual Keyboard.

... the "SAY" the virtual keyboard works fine and I stuff the m_TextString var with the real keyboard data using oDlg:bKeyDown := { | nKey | KEYSEEK(nKey)} . The alpha works (but returns only CAPS), and I get different symbols on the punctuation keys and the numeric keypad. *** This is may ...
by bradmaudlin
Thu Jul 14, 2016 4:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to create a Virtual Keyboard.
Replies: 5
Views: 1671

Re: busqueda lenta

... 80, 200 ; ID 101 OF oDlg ; ON DBLCLICK ( xrta:=BUSQ->CODCPT, xok:=1, ODLG:END() ) ; ON CLICK ( xrta:=BUSQ->CODCPT ) oLbx:bkeyChar :={|nKey| KeySeek(nKey,oLbx,390) , ; oLbx:SetFocus(),oLbx:Refresh() } REDEFINE GET oBUSCA VAR xBUSCA ID 130 of oDlg FONT OFNTARIAL REDEFINE BUTTON oBt3 ACTION ...
by diegopolverelli
Wed Jan 28, 2009 8:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: busqueda lenta
Replies: 6
Views: 1186

busqueda lenta

Hola. Tengo un programa que efectura una busqueda de la siguiente manera: tengo un listbox con un keyseek, donde puedo buscar a medida que escribo, y debajo un get para ingresar un texto, y un boton que dice "FILTRAR"; si pongo en el get, "tornillo", ...
by diegopolverelli
Wed Jan 28, 2009 6:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: busqueda lenta
Replies: 6
Views: 1186

Diego,

> esto del keyseek ya lo solucione.

Cómo lo solucionastes ? te agradecemos si compartes con todos la solución, gracias :-)

> Me podras contestar el otro msg???

Cual es ?
by Antonio Linares
Mon Oct 27, 2008 11:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: keyseek
Replies: 3
Views: 830

keyseek

Hola, Antonio. Sabes, esto del keyseek ya lo solucione. Me podras contestar el otro msg??? el de poder editar gets como en el word. Ahora si hago clic sobre el get, no tengo que poner insert, y ademas, el cursor, si pico en algun lugar en ...
by diegopolverelli
Mon Oct 27, 2008 11:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: keyseek
Replies: 3
Views: 830

keyseek

Hola. Tengo la siguiente funcion asociada a un list box: olbx:bKeyDown:={|nKey|KeySeek(nKey,olbx)} y la funcion keyseek: Function KeySeek(nKey,olbx) SET SOFTSEEK ON IF nKey = 8 // Reset on BackSpace Key oString := "" go top olbx:Upstable() ELSE IF (nKey = 32) .OR. ...
by diegopolverelli
Mon Oct 20, 2008 5:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: keyseek
Replies: 3
Views: 830

Tim,

func KeySeek you only need once.

But what serves short code if as you wrote:

> but I do notice it can be slow to load and it flickers.

 loads slowly, and it has not been updated in quite awhile, so it can lose compatibility with other improvements
Regards,
Otto
by Otto
Wed Oct 10, 2007 11:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Suggested enhancement
Replies: 4
Views: 1568

... 0.3,38 GET oSay VAR cFind OF oBar SIZE 160,26 UPDATE READONLY oLbx:bkeyChar :={|nKey|iif(nKey == K_ENTER, ; prn_RgKOPIE(nhorzM,nVertM), ; cFind := KeySeek(nKey,oLbx_PR,oSay,@cFind) ) , ; oLbx:SetFocus(),oLbx:Refresh() } oLbx:bChange := {|| cFind := "" , oSay:Refresh() } oLbx:aActions = Array( ( ...
by Otto
Wed Oct 10, 2007 10:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Suggested enhancement
Replies: 4
Views: 1568

Return to advanced search