"If at first you don't succeed; call it version 1.0" :-Unknown

Pages

Tuesday, August 9, 2011

Sample Lavalamp menu

Hi *.*,
A Lavalamp effect is simply made by an empty element with a declared background color that follows the mouse position when you move it through the items of a menu. In other words, it consists of a simple cursor that changes its left offset when you change your mouse position moving from an item to another.

DEMO


Saturday, August 6, 2011

Uses of Magic table in SQL SERVER

Uses of Magic table in SQL SERVER

1) Magic tables are nothing but inserted and deleted which are temporary object created by server internally to hold the recently inserted values in the case of insert and to hold recently deleted values in the case of delete, to hold before updating values or after updating values in the case of update.

Friday, August 5, 2011

Create Shortkeys in Windows Application

Hi *.*,
I had done only 2 projects(Minor) in windows application (Desktop). I'm planning to improve my knowledge over their too...Starts from here... :)

Create a new form named form1.And add a menu-strip on design space now moving towards code side over their u can find a method InitializeComponent(); right click and Go To Definition over their u can find initializing menu-strip just down different events are initializing on the menu-strip. Find which one you need to add short key and create an instance of that at their.

Example for short key ctrl+N

this.[controlname].ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.N)));

Stay tune...

Have a nice day... 'N happy Coding :)