Using Input Scope in Windows Phone 7

When the user places the focus on to the textbox, in the Windows Phone 7, the default keyboard / onscreen keyboard will pop up for the user to touch and type the characters to the textbox.

It is also important that the keyboard can be customized depending on the input the user will be typing or the data type the textbox is associated with

  • Share/Bookmark
Read more

AutoComplete Feature in Winforms

In one of my previous article AutoComplete is an ASP.NET using Ajax autocomplete extender i explained how to create AutoComplete TextBox in ASP .NET using AJAX , in this example i am achieving the same in Windows forms application . For this i’ve created a Autocomplete string collection containing names which will be shown in textbox as suggestions.

  • Share/Bookmark
Read more

Autocomplete Extender Control in ASP.NET

AutoComplete is an ASP.NET AJAX extender that can be attached to any TextBox control, and will associate that control with a popup panel to display words that begin with the prefix typed into the textbox.

Extenders are server controls that allow to extend a set of ASP.NET server controls by adding client side functionality.

  • Share/Bookmark
Read more