请问调用windows的关于窗口的函数是什么?? (100分)

  • 主题发起人 主题发起人 ajim
  • 开始时间 开始时间
A

ajim

Unregistered / Unconfirmed
GUEST, unregistred user!
我想获得一个运行窗体的标题 edit 和button combox 请问如何编写源代码<br>分不够 我再加
 
非常简单首先得到其句柄设为(H:HWND),方式很多,FindWindow(),WindowFromPoint()等<br>function GetText(H:HWND);<br>var<br>&nbsp; Text:Array[0..254] of char;<br>begin<br>&nbsp; GetWindowText(H,Text,255);<br>&nbsp; Result:=StrPas(Text);<br>end;
 
GetWindowText,如果是一个窗口,则得到标题,如果是Edit之类的,则得到内容<br>GetFocus,GetForeGroundWindow,WindowFromPoint等都可以获得Handle
 
找到程序的句柄,并枚举出它的所有子元素的句柄,通过句柄就可以得到这些窗体元素<br>的其它信息了,给你个例子参考:<br>http://www.delphibbs.com/delphibbs/dispq.asp?lid=233375
 
后退
顶部