My blogspot template modified

I got my blogspot template modified.It looks nice for me.Green is my favorite color which is the symbol of life and peace.It keeps my mind serene.Basically,I imitated the MSN livespace template,try to get this site the same style as my Livespace.

Music collection

1.The Sound Of Silence


2.Girlfriend


3.The Best Damn Thing


4.She


5.Patience


Music links are from http://leox.lifelogger.com/

Using Skin++ to change your app's face

Skin++ is a powerful software that can change your windows GUI apps' face.So you can focus your mind most on your app's algorithm and care less about the appearance.Skin++ do all the left job for you.Skin++ is easy to use,there is only four steps you need to do:

Step 1:
Download Skin++,and setup.(PS:Skin++ is not a free software,but you can find the crack file.Using google.)

Step 2:Create a new MFC or Win32 project from VC.(I use VC6.0 as my development tool)

Step 3:From the Skin++ installation folder,copy SkinPlusPlus.h, SkinPlusPlusDLL.lib, XPCorona.ssk, SkinPlusPlusDLL.dll to your project folder.Note XPCorona.ssk is a skin file,you can change it to get different skin style.

Step 4:Add the following code to your xxxx.h:
#include "SkinPlusPlus.h"
#pragma comment(lib,"SkinPlusPlusDLL.lib")
Add the following code inside the InitInstance member function of CxxxApp class:
InitializeSkin(_T("XPCorona.ssk"));

Step 5:compile and run.Your program's face changed!

Note:Because your program load the SkinPlusPlusDLL.dll file dynamically at the run-time,you need to keep this file the same folder as your exe file or in system folder.If you want to keep all-things just in one exe,you can try MoleBox.