怎样得到任意选中的文本(只是选中,未复制到剪切板)(50分)

  • 主题发起人 主题发起人 我爱PASCAL
  • 开始时间 开始时间
f1:=GetForegroundWindow;
f2:=GetWindowThreadProcessId(f1,nil);
AttachThreadInput(GetCurrentThreadId,f2,true);
f3:=getfocus;
AttachThreadInput(GetCurrentThreadId,f3,false);
Lbl.Caption := 'FocusWndHandle:' + inttostr(f3);
 
f1:=GetForegroundWindow;
f2:=GetWindowThreadProcessId(f1,nil);
AttachThreadInput(GetCurrentThreadId,f2,true);
f3:=getfocus;
AttachThreadInput(GetCurrentThreadId,f3,false);
Lbl.Caption := 'FocusWndHandle:' + inttostr(f3);
 
后退
顶部