Monday, January 21, 2008

Fake Id In Niagara Falls Canada

Windows keys on the notebook

For some applications, it is very convenient, the Windows keys on a notebook to use. Many laptops have this key space, not with a few tricks but they can be easily put to use by other buttons or key combination.

first Shortcuts:
[CTRL] + [ESC] = left Windows key
[SHIFT] + [F10] = RightWin


second Key Remap tool use
Remapkey is a small tool that runs on all versions of Windows (NT based) and allows a simple remap the keyboard. In this case, the right Windows key on the right control key is reached.
Download: remapkey.rar
Screenshot:


third Tool SharpKeys
Sharp Keys allows, regardless of the keyboard layout to change the key codes. Thus, it is even hot keys (media keys, modifier keys, copy, ...) to redirect existing real keys.
Website: www.randyrants.com/sharpkeys/
Screenshots:

Fondant Bootie Pattern

Dot Net (C #): Duration identify with Stop Watch

The class Stopwatch from the namespace System.Diagnostics allows time to stop exactly:
 Stopwatch sw = new   Stopwatch (); 
sw.Start ();
/ * do your work * /
sw.Stop ();
this . labelTime.Text =
"ElapsedTicks" sw.ElapsedTicks.ToString + () +
"\\ nElapsedMilliseconds " sw.ElapsedMilliseconds.ToString + () +
" \\ nElapsed (timespan): " + sw.Elapsed.ToString ();