JQuery TypeWatch Functionality in Delphi - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T01:31:41Z http://stackoverflow.com/feeds/question/130822 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/130822/jquery-typewatch-functionality-in-delphi 0 JQuery TypeWatch Functionality in Delphi samh 2008-09-25T00:36:12Z 2008-09-25T01:26:34Z <p>TypeWatch is a JQuery plugin that monitors the time between key strokes in a text input box. </p> <p>It allows for features like refreshing of search results as a user types their search terms, as demonstrated in the 'Users' page in Stack Overflow. </p> <p>If you are typing in the name of a user you wish to seach for and pause typing for half a second the search result for what you have already entered will appear.</p> <p>Does anyone have any examples or info on how you could monitor an textbox in delphi in a similar manner, as the user is typing trigger another event if this have stopped typing for a certain period of time, say half a second.</p> http://stackoverflow.com/questions/130822/jquery-typewatch-functionality-in-delphi/130980#130980 2 Answer by François for JQuery TypeWatch Functionality in Delphi François 2008-09-25T01:26:34Z 2008-09-25T01:26:34Z <p>You can look at the idea behind the AutoComplete feature of the regular ComboBox.<br /> Or implement a Timer that is reset to 0 at each Keypress in your Edit, and fires its onTimer event handler when it reaches the delay you specified (i.e. after no key entry for this interval of time).<br /> I'm pretty sure there are free components available that implement this...</p>