摘要:
windows可以将多个显示器映射为虚拟桌面,使我们可以利用这一点设计出方便工作的应用程序。例如powerpoint就充分发挥了双显示器的优势(大多数的笔记本电脑都支持),它可以在一个显示器上播放幻灯片,而在另一个显示器上显示备注,可以控制播放的进程,使使用者做商务演说的时候非常等心应手。那么我们怎么开发这种应用程序呢?这篇文章将向你展示如果用delphi实现使用多显示器的应用程序。
......
摘要:
在一些碰到过的多媒体软件编制过程中通常需要彻底屏蔽任务条,通常的办法是调用showwindow(h,sw_hide)来隐藏任务条,但是不能屏蔽开始菜单,通过键盘的win功能键还是可以打开开始菜单,所以配合键盘钩子,来屏蔽开始菜单。
library hide;
{ important note about dll memory management: sharemem must be th......
DELPHI中动态调用dll
显式例子:
unit main; 【程序编程相关:
Window画图程序中画曲线的简单实现】
【推荐阅读:
发现Delphi 2005的几个小Bug】
interface 【扩展信息:
ShadowStar CodeFast 】
uses
windows, messages, sysutils, variants, classes, graphics, controls, forms,
dialogs, stdctrls, extctrls, grids, dbgrids, db, dbtables, dbctrls;
type
tform1 = class(tform)
button1: tbutton;
edit1: tedit;
edit2: tedit;
image1: timage;
datasource1: tdatasource;
table1: ttable;
table1speciesno: tfloatfield;
table1category: tstringfield;
table1common_name: tstringfield;
table1speciesname: tstringfield;
table1lengthcm: tfloatfield;
table1length_in: tfloatfield;
table1notes: tmemofield;
table1graphic: tgraphicfield;
dbgrid1: tdbgrid;
procedure button1click(sender: tobject);
private...
下一页 摘要:
转自大富翁论坛,至于如何重新编译可以参考《fastreport 3.07 专业的安装及中文化》
q:fastreport 3.x导出pdf乱码怎么解决?(中文乱码,英文没问题). a:用下面这代码替换 frxpdffile.pas 中原来的代码就可以了已在enterprise(应该说是professional) 3.07下测试通过;注意事项:字体内嵌的复选框不可选。
procedure tf......