My Blog

All about my activities, Ideas and everything.

Month: April, 2007

HowTo : Crystal report XI with Data source

I don’t know everyone used to encounter with this problem, but I was. When I using crystal report connected with SQLServer 2005 using Microsoft OLE DB connector. I cannot use “localhost\sqlexpress” as a Data Source Name, I don’t know why? but I can use “localhost\sqlexpress” when I using sqlcmd to connect database. So my solution [...]

HowTo : C# change DateTime format programmatically

When you use Datetime. Now in c#, it’ll give u a datetime as same as in your computer configured. If you want to change it by programmatically. use the following code. 1234567using System.Globalization; private DateTime dt = DateTime.Now; private DateTimeFormatInfo  dfi = new DateTimeFormatInfo(); private CultureInfo ci = new CultureInfo("th-TH"); // Change where is you [...]

FIX : Windows XP Fix svchost.exe 100% CPU usage

Does anybody encounters problems, svchost.exe consume most of CPU. I don’t know does anybody has the same problem with me?, but my problem is about Windows Update. CPU utilization would hit 100% when windows xp want to updating something, it take so much time. This is how I fix about it. http://www.daniweb.com/techtalkforums/thread75130.html You can just [...]