Saturday, October 25, 2008

Serialization of Objects

Serialization using XML - Work on Mobile windows too
Paul Whitaker provides his own version of serialization to and from string here :
http://geekswithblogs.net/paulwhitblog/archive/2007/07/20/114076.aspx

Binary Serialization
CSharp Corner article by Bipin Joshi about object serialization in general using BinaryFormatter
http://www.c-sharpcorner.com/UploadFile/bipinjoshi/serializingObjectsinCS11102005234746PM/serializingObjectsinCS.aspx

Serialization in Windows Communication Foundation by Anil Gupta
http://www.codeproject.com/KB/WCF/Serialization_in_WCF.aspx

IE freezes when opening a new page after closing it

I search on google for the following "ie hangs when opening"
http://www.google.com/search?sourceid=navclient&aq=t&ie=UTF-8&rlz=1T4GGLD_en___IL223&q=ie+hangs+when+opening


KB : Internet Explorer hangs when accessing files Problem
Microsoft KB on IE hanging can be found here :
http://support.microsoft.com/kb/816769/en-us

they are saying that accessing the same files after closing explorer and reopening, you the that IE shuts down but it did not and it is trying to access the file which is still used by the previous session.
The fix is to download XP service pack, there is no special hot fix for this problem, but this is a confirmed problem.

Flgall is writing on the same problem on his blog, his problem was on win98 and with a corrupt oleauto32.dll
http://www.felgall.com/brsie8.htm

Another user suggests reseting IE7, under "Tools -> Advanced", and clicking "Reset" button.
http://techrepublic.com.com/5208-6230-0.html?forumID=101&threadID=215179&messageID=2477500

Friday, October 3, 2008

Shrinking SQL2005 database

here is a post on shrinking sql2005 databases.
It is called "Truncating Log Files and Recovering Space" and written by SQLCleanup team.
http://www.sqlcleanup.com/2008/sql-2005-truncating-log-files-and-recovering-space/
Notine that the data file is shrinked too, which is the real operator here.