Saturday, July 25, 2009

Hard Reset Sumsong Omnia

How to Hard Reset the Samsung Omnia

1. Poke the soft reset hole beside your power button(Poke and Release)
2. Press and hold the Call and Cancel Button together(Do it immediately after Step 1)
3. Do not release Call and Cancel button, the Samsung Omnia Screen Appear
4. The Reset Screen will appear as below

Installing and configuring Microsoft Visual SourceSafe for Internet (Remote) access

http://diaryproducts.net/about/operating_systems/windows/sourcesafe_2005_internet_iis
http://alinconstantin.homeip.net/webdocs/scc/VSS_Internet.htm

Monday, June 29, 2009

Make Vista fast

0. Install following hot fix from Microsoft
http://support.microsoft.com/default.aspx/kb/931770

1. Disable "DWM.exe"
Task Manager -->New Task -->Services.msc
Stop "Desktop Window Manager" and change it to start up manually
2. Disable Sidebar
Remove check box "Start Windows Sidebar when windows starts"
Control Panel\Appearance and Personalization\Windows Sidebar Properties
3. Change to use classic file explorer
Control Panel\Appearance and Personalization\Folder Options

General --> choose "Use Windows classic folders"

4.Turn off "Remote Differential Compression"
To turn it off go in Control Panel / Programs and features / Turn on or turn off
Windows features and uncheck "Remote Differential Compression"


5.Disable TCP/IP "Receive Window Auto-Tuning "
To disable it, open a command prompt and type (run as Administrator):

netsh interface tcp set global rss=disabled
netsh interface tcp set global autotuninglevel=disabled

6. Disable Windows Search Service
TaskManager -->New Task -->Services.msc
Stop "Windows Search Service" and change it to start up manually

Vista Copy file slowly

1.Turn off "Remote Differential Compression"
To turn it off go in Control Panel / Programs and features / Turn on or turn off Windows features and uncheck "Remote Differential Compression"


2.Disable TCP/IP "Receive Window Auto-Tuning "
To disable it, open a command prompt and type (run as Administrator):

netsh interface tcp set global rss=disabled
netsh interface tcp set global autotuninglevel=disabled

Saturday, January 10, 2009

version DataGrid contrrol of SilverLight 2.0 is available

Many bugs have been fixed for DataGrid of SilverLight,
it is better to get latest version.

The problem in this post wasted me 2 days time,until I found this post and get answered.
http://silverlight.net/forums/p/63904/157875.aspx#157875

See here for detail and download/installsation in structions
http://silverlight.net/forums/t/59990.aspx

Tuesday, January 6, 2009

ASP.NET AJAX callbacks to Web Methods in ASPX pages

http://geekswithblogs.net/frankw/archive/2008/03/13/asp.net-ajax-callbacks-to-web-methods-in-aspx-pages.aspx

The following content comes from page in above link
----------------------------------------------------

Making ASP.NET AJAX calls to web services has become increasingly popular these days. This approach not only provides a good separation of concerns but also makes it possible to create a truly ajax'ed web site with JavaScript's power on the client side. However, you may in some situations want to move one or more web methods to ASPX pages. You often have methods that are logically dedicated to specific ASPX pages, and you don't really want them to be exposed to the public through the ASMX file. Generally, this is the most appealing reason why you want to place web methods in ASPX pages.

Both ASP.NET AJAX Extensions and ASP.NET 3.5 support AJAX callbacks to the web methods placed in ASPX pages. It only requires a few simple steps to do this. For example, you want to move a web method called GetProducts to an page named Products.aspx, and you want to invoke the GetProducts method directly from JavaScript. The first step is expose GetProducts as a web method.