// The code in CODE SECTION has to be called in Main() function,
// before Application.Run()
using DMSoft;
...
DMSoft.SkinCrafter.Init();
/* ------------ Begin of CODE SECTION ------------- */
DMSoft.SkinCrafter SkinOb = new DMSoft.SkinCrafter();
SkinOb.InitLicenKeys("SKINCRAFTER","SKINCRAFTER.COM",
"support@skincrafter.com","DEMOSKINCRAFTERLICENCE");
SkinOb.InitDecoration(true);
/* ------------ End of CODE SECTION ------------- */
SkinOb.LoadSkinFromFile("D:\\Skin.skf");
SkinOb.ApplySkin();
Application.Run(new Form1());
SkinOb.DeInitDecoration();
DMSoft.SkinCrafter.Terminate();