吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 7407|回复: 22
收起左侧

[其他转载] 修改标题的(玩具)

[复制链接]
hixiaosheng 发表于 2010-6-13 14:40
QQ截图未命名.jpg
代码很简单
 
unit Unit1;
interface
uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls,Shellapi, XPMan, ComCtrls, ToolWin;
type
  TForm1 = class(TForm)
    ListBox1: TListBox;
    Button1: TButton;
    Button2: TButton;
    Edit1: TEdit;
    Label2: TLabel;
    Button3: TButton;
    Label3: TLabel;
    Edit2: TEdit;
    Button4: TButton;
    XPManifest1: TXPManifest;
    StatusBar1: TStatusBar;
    procedure Button1Click(Sender: TObject);
    procedure Button2Click(Sender: TObject);
    procedure Button3Click(Sender: TObject);
    procedure Button4Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
var
  Form1: TForm1;
  Function EnumWindowsProc(h:hwnd;lp:integer):boolean;stdcall;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
EnumWindows(@EnumWindowsProc,0);
end;
Function EnumWindowsProc(h:hwnd;lp:integer):boolean;stdcall;
var
bstr:array[0..255] of char;
begin
  if GetWindowText(h,bstr,windows.MAX_PATH) >0 then
  begin
    Form1.ListBox1.Items.Add(bstr);
  end;
result:=true;
end;
procedure TForm1.Button2Click(Sender: TObject);
begin
  form1.ListBox1.Clear;
end;
procedure TForm1.Button3Click(Sender: TObject);
var
fh:hwnd;
begin
  fh:=FindWindow(nil,pointer(edit1.text));
  if fh=0 then exit;
  SetWindowText(fh,pointer(edit2.text));
end;

procedure TForm1.Button4Click(Sender: TObject);
begin
  ShellExecute(handle,'open','http://bbs.52pojie.cn',nil,nil,SW_SHOW);
end;
end.
test.rar (175.29 KB, 下载次数: 399)

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

qyc0129 发表于 2010-6-13 16:36
- -,
更改标题 (取句柄("a.exe"),123)
zq5202002 发表于 2010-6-13 17:03
jinqi1988 发表于 2010-6-13 22:33
moli 发表于 2010-8-27 01:26
呵呵,这个修改的标题不可以保存,关闭就没有了
cqhjyc82 发表于 2010-10-3 21:19
下来了 就是不会用啊
oneRain 发表于 2010-10-3 22:21
即使再简单,,能理解就很不错啦
阿杰 发表于 2010-10-22 10:30
谢谢小生。
yuenluan 发表于 2010-10-27 16:15
呼呼 看看
x007 发表于 2011-7-20 03:12
支持哈!!!!
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-16 02:42

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表