说再次安装,是因为我忘了自己之前写过的方法,装完之后感觉怪怪的,想看看别人是怎么装的,于是用google搜索了一下,才发现之前写过: http://www.cnblogs.com/findumars/p/3229170.html 不过自己再装一遍也有好处,是一个重新学习的过程,而且方法确实与以前不一 Read More
posted @ 2013-12-07 21:22 findumars Views(1571) Comments(0) Diggs(0)
虽然东西都是现成的。但是也要脑子里有个概念。// 地区与语言GetACP 取得 ANSI code page,法语XP+设置中文内核 = 936 // ShowMessage(IntToStr(GetACP));GetThreadLocale 法语XP+设置中文内核 = 2052,纯法语 103... Read More
posted @ 2013-11-30 18:36 findumars Views(2501) Comments(0) Diggs(0)
class A {public: A() { init(); } virtual void init() { printf("A::init\n"); }};class B : public A {public: B() { init(); } virtual void init() { print... Read More
posted @ 2013-10-16 04:54 findumars Views(381) Comments(0) Diggs(1)
class A {public: A() { printf("A \n"); } ~A() { printf(" ~A \n"); }// 这里不管写不写virtual,删除B对象的时候,都会被执行。因为这个例子是B*指针指向B对象,不是A*指针指向B对象。};class B : public A{... Read More
posted @ 2013-10-08 18:25 findumars Views(2695) Comments(0) Diggs(3)
重要的类:TBaseVirtualTree = class(TCustomControl)TCustomVirtualStringTree = class(TBaseVirtualTree)TVirtualStringTree = class(TCustomVirtualStringTree)TCu... Read More
posted @ 2013-09-21 05:32 findumars Views(2131) Comments(0) Diggs(0)