Search found 39 matches: lincsearch

Return to advanced search

Re: Todos los combobox sean incrementales

...  DATA   oGet   DATA   cSearchKey   // Holds current search key for incremental search.   DATA   lIncSearch AS LOGICAL // incremental search          <----------------=   esta linea de aqui   DATA   ...
by armando.lagunas
Sat Nov 04, 2017 10:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Todos los combobox sean incrementales
Replies: 2
Views: 485

Re: Allow a write in Get in a Combobox

Jose, Sorry, Jose, yes it should have been oDBC:lIncSearch. I have not use a DBCombo in some time. I wrote the original incremental search code for the TDBCombo class but it was since moved into the parent class, TCombobox. I have in my notes that ...
by joseluisysturiz
Tue Sep 05, 2017 10:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Allow a write in Get in a Combobox
Replies: 11
Views: 2865

Re: Allow a write in Get in a Combobox

Jose, Sorry, Jose, yes it should have been oDBC:lIncSearch. I have not use a DBCombo in some time. I wrote the original incremental search code for the TDBCombo class but it was since moved into the parent class, TCombobox. I have in my notes that ...
by James Bott
Tue Sep 05, 2017 5:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Allow a write in Get in a Combobox
Replies: 11
Views: 2865

Re: COMBOBOX

Hello Rick,

thank you fro taking your time and help.
I do not use resources.

oPrefix:lIncSearch = .T. does not help.

The problems are still there.
Best regards,
Otto
by Otto
Sun Aug 27, 2017 8:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX
Replies: 5
Views: 957

Re: COMBOBOX

Otto This code seems to work for me .... notice the oPrefix:lIncSearch = .T. REDEFINE COMBOBOX oPrefix  var cPrefix  ID 131 of oInvt  ;                ITEMS aPrefix  ;        ...
by Rick Lipkin
Sat Aug 26, 2017 2:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: COMBOBOX
Replies: 5
Views: 957

Re: TCOMBOBOX - lIncSearch deafult .t.

thanks
by MGA
Mon May 22, 2017 11:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCOMBOBOX - lIncSearch deafult .t.
Replies: 2
Views: 422

Re: TCOMBOBOX - lIncSearch deafult .t.

That may affect to backwards compatibility

Not sure if that change could modify other FWH apps behavior
by Antonio Linares
Mon May 22, 2017 8:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCOMBOBOX - lIncSearch deafult .t.
Replies: 2
Views: 422

TCOMBOBOX - lIncSearch deafult .t.

É possível forçar a classe TCOMBOBOX para que TODOS os combobox assumam o DEFAULT lIncSearch := .t. ??
by MGA
Sun May 21, 2017 3:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TCOMBOBOX - lIncSearch deafult .t.
Replies: 2
Views: 422

Re: Búsqueda Incremental en Combobox

http://forums.fivetechsupport.com/viewtopic.php?f=3&t=32295&p=189416&hilit=lIncSearch#p189416 http://forums.fivetechsupport.com/viewtopic.php?f=3&t=23649&p=133508&hilit=lIncSearch#p133508 http://forums.fivetechsupport.com/viewtopic.php?f=3&t=21772&p=115957&hilit=lIncSearch#p115957 ...
by karinha
Tue Jul 26, 2016 1:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Búsqueda Incremental en Combobox
Replies: 9
Views: 1193

Re: ComboBox DropDown modificacion a clase

... oDlg:End() TOOLTIP { "Cancelar" } oDlg:lHelpIcon := .F. AEval( oDlg:aControls, { |o| IF( o:ClassName == "TCOMBOBOX",; ( o:lIncSearch := .T., o:lCaseSensitive := .T. ),; ( o:nClrText := CLR_BLUE, o:nClrPane := nRGB( 0xFE, 0xFF, 0xDB ) ) ) } ) oDlg:aControls[5]:bChange := ...
by ratazul
Tue Apr 19, 2016 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ComboBox DropDown modificacion a clase
Replies: 2
Views: 710

Re: Combobox AutoFill

Tim,

Have you tried oComboBox:lIncSearch := .T. ?
by Antonio Linares
Thu Dec 03, 2015 10:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox AutoFill
Replies: 2
Views: 575

Re: How many INDEX can create ON MySql and How to use it?

... but I have some question. 1.) If I need to use RELATION, I can use INDEX. Can I use Primary Key for relation? 2.) If I need to do as TCOMBOBOX:lIncSearch option. Can I Requery from the :RecordSet? Or I have to Query:Excute() from table everytime? 3.) I will use RECNO field name for AUTO_INCREMENT. ...
by dutch
Sat Jun 27, 2015 3:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How many INDEX can create ON MySql and How to use it?
Replies: 8
Views: 2467

New FTDN November 2014 (FWH 14.11)

... to dialg created from source code too. - The programmer has not option whether to enable/disable this feature. Now this feature is enabled when lIncSearch is .t., as originally intended. - When the user enters text in a case different from the case of an item, the user's text was over-written ...
by Antonio Linares
Sun Nov 30, 2014 7:48 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN November 2014 (FWH 14.11)
Replies: 5
Views: 2579

Re: Incremental Combobox

That was the first thing I tried before doing the post, and it was not working for me.

It actually has to be lIncSearch := .t.

Tim
by TimStone
Wed Aug 27, 2014 4:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental Combobox
Replies: 7
Views: 836

Re: Incremental Search

Marcelo, See FWH\samples\testdbc1.prg for a dbcombo example. To turn on incremental searching, you will need to set oDBC1:lIncSearch:=.t. (it defaults to .f.). If you want the control's list to open automatically when the user starts typing add this line: oDBC1:bKeyDown:={|| if(len(trim(cStateID))>=1,(oDBC1:open(),oDBC1:refresh()),)} ...
by James Bott
Wed May 07, 2014 3:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Incremental Search
Replies: 27
Views: 5222
Next

Return to advanced search