Swype for Android is getting better and better. Text input is easier with this latest beta release. And introduce a special moveable keyboard Honeycomb-only WXGA version for Android tablets. Try it yourself to find out more…

Swype v3.0 Beta
There is a new version of Swype for HTC HD2 floating around the Internet now. Some said that this version 3.9.10.10.5032 was extracted from the leak T-Mobile USA HTC HD2 ROM. It was redesigned to suite HTC HD2 and has bigger soft keypads.

31 Jan
Posted by Jayce Ooi as Software
Swype is one of the sliding inputs for Windows Mobile. There are SlideIT and ShapeWriter too.
With one continuous finger or stylus motion across the screen keyboard, the patented technology enables users to input words faster and easier than other data input methods—at over 50 words per minute.
What is Swype anyway? Check out below video to find out. It is a really great way to input.
ASP.NET C# Input TextBox value by pressing Enter key. Huh? I want to get the value of the textbox without click on the submit button. But getting the textbox value by just pressing enter key on keyboard. How am I going to do so? The page just refresh if I press enter key. I want the enter key link to the submit button. Therefore, whenever I press enter key, I will get the textbox value.
Here is the solution to get it done. By adding defaultbutton variable in form or asp:Panel will solve it.
Code example
<form id=”form1″ defaultbutton=”Button1″ runat=”server”>
<div>
<asp:TextBox ID=”TextBox1″ runat=”server”></asp:TextBox>
<asp:Button ID=”Button1″ runat=”server” Text=”Button” OnClick=”Button1_Click” />
<br />
<asp:Label ID=”Label1″ runat=”server” Text=”Label”></asp:Label>
<asp:Panel ID=”Panel1″ defaultbutton=”Button2″ runat=”server”>
<asp:TextBox ID=”TextBox2″ runat=”server”></asp:TextBox>
<asp:Button ID=”Button2″ runat=”server” Text=”Button” OnClick=”Button2_Click” />
<br />
<asp:Label ID=”Label2″ runat=”server” Text=”Label”></asp:Label>
</asp:Panel>
</div>
</form>