IntelliSense TextBox Control

  • Thread starter Thread starter abcabcabc
  • Start date Start date
A

abcabcabc

I want a textbox control which support like-as IntelliSense feature to allow
user select a word when inputting text. Is textbox control support it? Or
Are there any third party control support it?
 
You are possibly talking about an "auto-filling" textbox. The datasource can
be a text file, registry, names of the shell objects(Windows XP can do it for
you provided you follow some COM Interface rules..for details in MSDN) or
even a database(very intensive queries).

Three options are there
1. For shell objects(file/folder names) Windows XP can help you. It even
have a feature of implementing your own data source(if I remember correctly)

2. Implement your own Winform control with pluggable data sources(That would
be great !)

3. Go for third party control like XTras.NET
http://www.xtras.net/products/dynamicautocompletetool.asp

Thanks
Debasish Bose, MCP.NET
Oracle Corporation
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top