Search found 103 matches: typed

Return to advanced search

Re: autocomplete in get

... := 0 //------------------------------------------------------------------------- // We use ::lAuto to control when we must search in ::aItems for typed text // We must seek in ::aItems when GET is blank or when user clear it //------------------------------------------------------------------------- ...
by Maurizio
Thu Jun 23, 2011 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: autocomplete in get
Replies: 15
Views: 9255

Re: autocomplete in get

... I note in the graphic in your first post that the items are not in alpha order and the item highlighted is not the first match to the text typed in. So your example is not working correctly. I did some testing with TCombobox and incremental searching was broken (at least in my version). ...
by James Bott
Wed Jun 22, 2011 12:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: autocomplete in get
Replies: 15
Views: 9255

Re: autocomplete in get

>Thank you. I added oCbx:lIncSearch := .t. to testcmb2.prg and does not work.

I forgot to mention that the data does need to be sorted.

>Anyway, I need a Get because the value typed on it may not be in the Array.

Then it seems that the Autoget class would be a better solution.

James
by James Bott
Tue Jun 21, 2011 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: autocomplete in get
Replies: 15
Views: 9255

Re: autocomplete in get

Thank you. I added oCbx:lIncSearch := .t. to testcmb2.prg and does not work.

Anyway, I need a Get because the value typed on it may not be in the Array.

See working example at http://jqueryui.com/demos/autocomplete/#default
by ukservice
Tue Jun 21, 2011 6:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: autocomplete in get
Replies: 15
Views: 9255

Get on Button Bar

... am having problems with a get on a buttonbar type a value in the get and press enter - the first MsgInfo is blank the second MsgInfo has the value typed in. Using a valid clause and using the bKeyDown to process the valid produces the same result  @15,65 GET oFindInvc VAR cJbNo picture '@!' ...
by Colin Haig
Sun Jun 19, 2011 2:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Get on Button Bar
Replies: 2
Views: 430

Re: Error en PREVIEW nueva versión 11.04

... error in the rpreview.prg Please see line no: 71 in rpreview.prg (11.04)   DATA   oDevice, oReportf Instead of oReport, wrongly typed as oReportf. Kindly correct this line as below:   DATA   oDevice, oReport With the correction it will work correctly.
by nageswaragunupudi
Thu Apr 28, 2011 9:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en PREVIEW nueva versión 11.04
Replies: 4
Views: 852

Re: combobox

Enrico's example works fine if Caps is pressed for the first typed char.

James enhacement avoids the use of Caps.

Unless I am missing something
by Antonio Linares
Sun Jul 04, 2010 8:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: combobox
Replies: 40
Views: 5688

Re: Diffeence between oSay:SetText() and oSay:VarPut()

Dear Mr.James,

I have used oSay:SetText("New Value") in my application prg's. In this forum, by mistake I typed oSay:SetText:="some text". :oops:

I tried sysrefresh() too.

Regards
Anser
by anserkk
Wed Jan 20, 2010 5:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Diffeence between oSay:SetText() and oSay:VarPut()
Replies: 12
Views: 3554

Re: REDEFINE GET .... PICTURE "@K"

... in a get. However, if the user clicks on a control using the mouse and types a character the text of the get is not deleted and the character typed is simply inserted (or overwrites) the text in the control. Can someone confirm (or not) this problem? Clipper Help for @K picture: Deletes default ...
by James Bott
Fri Oct 30, 2009 4:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: REDEFINE GET .... PICTURE "@K"
Replies: 12
Views: 2252

Send SMS direct to Mobile Phone connection?

... an application that sends an SMS. The maximum characters I want the user to enter is 160. I would like to show the user how many chars he has typed so far. The code below doesn't work because it moves the cursor to the start of the memo field everytime a key is pressed, so typing "ABC" ...
by dutch
Wed Jul 08, 2009 7:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send SMS direct to Mobile Phone connection?
Replies: 9
Views: 2085

Re: Printing a pre-formated letter

... data to another variable like cLETTER := oRs:Fields("letter"):Value NOW, cLETTER contains the complete formatted text just as it was typed in Notepad .. formatted correctly and in three paragraphs... and you can test this and look at the document like : MsgInfo( cLETTER ) and it will ...
by Rick Lipkin
Thu Feb 19, 2009 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing a pre-formated letter
Replies: 7
Views: 1118

Re: setLastkey(0) ?

... confused by it. I was the one that asked for lastKey() to be added to FW many years ago. It was needed to process oGet:bChange since the last key typed wasn't in the GET buffer when bChange was eval'd. This has turned out to be a continuous issue since then due to the confusion about it. Lastkey() ...
by James Bott
Tue Jan 13, 2009 2:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: setLastkey(0) ? ( Solved! )
Replies: 17
Views: 2285

... ( oGet[nX]:SetFocus(), oGet[nX]:KeyChar(asc("1"))) The character field fills OK but the numeric field overwrites the whole field with the number typed I planned to use the TGET class methods to build the numbers. Thanks for jumping in, regards. Euclides
by Euclides
Fri Dec 05, 2008 4:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Virtual Keyboard
Replies: 20
Views: 4193

... with the number of characters that the user can type. The latter is set by the lenght of the string variable. And consider that the length of the typed string depends on the typed characters, at least using a proportional font, so you'll have to use a greater horizontal GET size anyway. EMG
by Enrico Maria Giordano
Thu Nov 27, 2008 12:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Not all characters of a get field are visible
Replies: 12
Views: 2276

Bug in text control after TXBrowse() mouse wheel scrolling??

... to the bottom of a TXBrowse() display with the mouse wheel, then edit one of the text controls in ANY form, the SPACE bar results in a "2" being typed. The mallorca.prg sample program shows exactly the same problem. If you launch it, spin the mouse wheel to move the browse cursor to the last ...
by PatrickWeisser
Tue Oct 14, 2008 3:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in text control after TXBrowse() mouse wheel scrolling??
Replies: 5
Views: 973
PreviousNext

Return to advanced search