HTML的界面有以下特点:图文混排,格式灵活,可以包含Flash、声音和视频等,实现图文声像的多媒体界面,而且易于建立和维护。另外,HTML的显示环境一般机器上都具备,通常不需要安装额外的软件。当然,HTML界面也有它欠缺的方面,即:界面控制能力有限,代码调试不便----虽然DHTML提供了比较强的... Read More
posted @ 2015-08-18 20:00 findumars Views(3536) Comments(0) Diggs(0)
/* 窗口样式参考列表(都是GetWindowLong的GWL_STYLE风格,都是TCreateParams.Sytle的一部分),详细列表如下:https://msdn.microsoft.com/en-us/library/windows/desktop/ms632600(v=vs.85).a Read More
posted @ 2015-08-18 17:57 findumars Views(1936) Comments(0) Diggs(0)
The component below works perfectly, except for the following problem: 1) Saves the component below in a file "trancomp.pas".Then, install this compon Read More
posted @ 2015-08-18 17:55 findumars Views(2991) Comments(1) Diggs(0)
子窗体显示在任务栏时,procedure Tfrm_SendSmartMsg.CreateParams(var Params: TCreateParams);begin inherited; Params.WndParent := 0;end;这时子窗体会在任务栏有单独的按钮,如果这时这个子窗体上又... Read More
posted @ 2015-08-18 17:50 findumars Views(662) Comments(0) Diggs(0)
H:=FindWindow('Tfrm_MainForm','aa'); if H>0 then begin ShowWindowAsync(h,SW_MAX); SetForegroundWindow(h); end;参考:http://m.blog.csdn.net/blog/fghydx/... Read More
posted @ 2015-08-18 17:42 findumars Views(2244) Comments(0) Diggs(0)