Some of my mind waves...
“Sun lays very fine, architecturally strong roads for developers, but it will start in Earth and end up with Neptune.“ which is very costly and needs a great thrust.
“Microsoft lays cheap, weak and somewhat patchy roads for developers but between you and your Neighborhood“ which is very cheaper and faster.
[Edited based on a response :) ]
A Nice Tip from TweakUI PowerToy...
“If you create a file called Folder.jpg, that image will be used as the thumbnail for the folder.
What's more, that image will also be used as the album art in Windows Media Player for all media files in that folder.”
This is better than what we have developed before for the same :)
Encrypted Connection String by DonXML
Seems very cool in understanding patterns from real life
examples like this..
Anil from Oracle Corp pointed me to this online tutor for Sanskrit (The Language of Gods)
Interesting...I am going to refresh my sanskrit skills again :)
Alan MacCormack , an associate professor of business administration at Harvard Business School estimated the
True cost of free Linux here…
Found an old snippet from my KB :)
using System.Windows.Forms;
/// <summary>
/// Responds to enter key and performs click
action on button.
/// </summary>
/// <author>Sudhakar Sadasivuni</author>
public class CustomButton : Button
{
/// <summary>
///
/// </summary>
public CustomButton()
{
}
public void hitEnter(object sender,
KeyPressEventArgs kpArgs)
{
if(kpArgs.KeyChar == '\r')
{
this.PerformClick();
} kpArgs.Handled = true ;
}
}
use this as a button and add keypressEventHandler
this.btnView.KeyPress += new KeyPressEventHandler(this.btnView.HitEnter);