摘要:
unit unit1;
interface
uses
windows, messages, sysutils, variants, classes, graphics, controls, forms,
dialogs, stdctrls;
type
tform1 = class(tform)
button1: tbutton;
memo1: tmemo;
......
摘要:
delphi中实现汉字拼音声母查询,unit代码如下:unit unit1;
interface
uses windows, messages, sysutils, classes, graphics, controls, forms, dialogs, stdctrls;
type tform1 = class(tform) listbox1: tlistbox; listbox2: t......
防止全局hook入侵Delphi版,2000以上系统适用(part1)
原理见http://202.38.73.222/~pjf/blog/archives/000040.html
代码如下:
============form1.dfm==============
object form1: tform1
left = 192
top = 107
width = 396
height = 261
caption = form1
color = clbtnface
font.charset = default_charset
font.color = clwindowtext
font.height = -11
font.name = ms sans serif
font.style = []
oldcreateorder = false
oncreate = formcreate
ondestroy = formdestroy
pixelsperinch = 96
textheight = 13
object button1: tbutton
left = 0
top = 152
width = 89
height = 25
caption = loa...
下一页 摘要:
你的电脑有没有摄像头?看到别人用qq玩视屏你会不会去想怎么实现的?这里介绍使用delphi使用ms的avicap32.dll就可轻松的实现对摄像头编程,如果再加上你的网络编程水平,实现一个视屏聊天就不成什么问题了。看看下面代码的代码:const wm_cap_start = wm_user;const wm_cap_stop = wm_ca......