Recently I found many pcs affected by this. You can see Dipak Bhattarai in title of every Internet explorer window. The simples solution I found to remove this is change the registry value. I am not sure that this has also added some malicious entry some where and maybe stilling or sniffing the data. However [...]
Archive for May, 2008
Internet Explorer contains Dipak Bhattarai in title
Posted in General on May 14, 2008 | 13 Comments »
Generate Image from text using C# OR Convert Text in to Image using C#
Posted in Techincal on May 9, 2008 | 15 Comments »
Today I learn a new thing, how to generate and image form given text or how to convert text in to image? Dotnet framework provides System.Drawing and System.Drawing.Graphics class which helps us to generate image from text or convert text into image. Below is the code,
1: private Bitmap CreateBitmapImage(string sImageText)
[...]
Missing templates in Visual Studio installed templates
Posted in DotNet 2.0, DotNet 3.0, Techincal on May 6, 2008 | 12 Comments »
Today, when I start visual studio and click on Add new Item I found that WebForm option is missing from visual studio templates. Thanks to Eric Hammersley who gave the perfect solution. To add missing templates you need to run following command on visual studio command prompt.
Close all instance of Visual Studio. Open [...]
How to Serialize Object in Dot Net
Posted in DotNet 2.0, Techincal on May 5, 2008 | 1 Comment »
What is Serialization?
Serialization is the process of storing the state of an object to the stream of bytes. Using serialization one can store the object in to memory stream or file system in such a way that the original object can be retrieve from persistent medium using DeSerialization.
One can make the class [...]