用GetWindowText也可以,只不过Handle用的是Edit的Handle<br><br>例子:<br>把下面部分放到个Timer里<br>var Mpoint:TPoint; //鼠标指向的点坐标<br> NCharBuf:array of char; //取得的Text<br>Begin<br>if GetCursorPos(Mpoint) then<br> dhandle:=WindowFromPoint(Mpoint); //如果指向的是个Edit,则返回的是Edit的Handle<br><br> //取得 Text<br> SetLength(NCharBuf,256);<br> SetLength(NCharBuf,GetWindowText(dhandle,pchar(NCharBuf),256));<br> Form1.Caption:=string(NCharBuf);<br>end;<br><br>写的话,用SetWindowText,套GetWindowText的格式