Posts Tagged ‘C#’

Easily lock your folder

December 13, 2010 - 4 Comments - App Development, C#.NET Code

Background
There are always time you found you need to hide some sensitive information. There are a few solutions out there where allow you to encrypt your folder although it will takes a bit of time for the encryption (and cost money to buy). Some of my friends choose to use Windows folder hide attribution or [...]

Article Tags: , , , , ,

Did you know about db4o – a brilliant object oriented database

January 27, 2010 - 8 Comments - App Development

db4o-slash
Db4o. It’s an object oriented database. It’s so simple, so easy to learn, well, you nearly don’t need to remember anything new.

Article Tags: , , , ,

Application to fix case sensitive problem when move your website website to linux server

January 20, 2010 - 6 Comments - Web Development


I have a trouble with case sensitive when moving to a linux server. I tried to google around but couldn’t find the solution for this. The only way I have in mind is manually change all the links in my pages which is hundreds of them. So I decided to write a quick small application to do this for me. I think I should share it here. Even not a many people have this problem but when they got it, at least there is some help.

Article Tags: , ,

Access Windows special directories (My document, Desktop, Program Files)

October 12, 2009 - No Comments - C#.NET Code

You can easily access to special directories of windows in C# by using:

Environment.SpecialFolder.MyDocuments;

The same go with other directories

Environment.SpecialFolder.Desktop;
Environment.SpecialFolder.History;

Article Tags: ,

Run an app or a link

April 11, 2009 - No Comments - C#.NET Code

To run an app or a link(open in default browser)

Article Tags: ,