var EIP: Cardinal; procedure GetEIP(); stdcall;asm pop eax; mov EIP,eax; push eax;end; procedure TForm1.Button1Click(Sender: TObject);begin GetEI... Read More
posted @ 2015-12-02 05:13 findumars Views(974) Comments(0) Diggs(0)
Qt Windows下链接子系统与入口函数(终结版) 转载自:http://blog.csdn.net/dbzhang800/article/details/6358996 能力所限,本讨论仅局限于MSVC的cl编译器和MinGW的gcc编译器。 第一部分:不涉及Qt(理清链接子系统和入口函数) 第 Read More
posted @ 2015-12-02 01:18 findumars Views(1989) Comments(0) Diggs(0)
QtWidgets的维护者 Marc Mutz 有一篇博客比较详尽的介绍了 Qt自己的容器。介绍了何时用什么比较好https://marcmutz.wordpress.com/effective-qt/containers/其实也可以程序里面qt的库只用在ui层,其他层尽量用std或者其他的。批判S... Read More
posted @ 2015-12-02 01:04 findumars Views(786) Comments(0) Diggs(0)
看到书名,如获至宝。不要把自己的功能塞给用户,而是把用户需要的功能塞给用户!! Read More
posted @ 2015-12-02 00:54 findumars Views(201) Comments(0) Diggs(0)
procedure TForm1.Button1Click(Sender: TObject);varChildForm: TForm2;beginChildForm := TForm2.Create(nil);ChildForm.ShowModal(procedure(ModalResult: TM Read More
posted @ 2015-12-01 21:57 findumars Views(399) Comments(0) Diggs(0)