這是一個Delphi與Windows注冊表相關的示例程序,修改IE的標題欄信息,並更改IE默認的主頁,修改並保存注冊表相關值,程序示例代碼如下:
01
unit
MiniIETool_Main;
02
interface
03
uses
04
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
05
Dialogs, StdCtrls, Buttons, ExtCtrls, Registry, ComCtrls;
06
type
07
TForm1 =
class
(TForm)
08
Label1: TLabel;
09
Edit1: TEdit;
10
Label2: TLabel;
11
Edit2: TEdit;
12
BitBtn1: TBitBtn;
13
BitBtn2: TBitBtn;
14
StatusBar1: TStatusBar;
15
procedure
BitBtn1Click(Sender: TObject);
16
BitBtn2Click(Sender: TObject);
17
FormCreate(Sender: TObject);
18
private
19
{ Private declarations }
20
public
21
{ Public declarations }
22
end
;
23
var
24
Form1: TForm1;
25
implementation
26
{$R *.dfm}
27
//修改IE標題
28
TForm1
.
29
30
MyReg:TRegistry;
31
MyTitle:
string
32
begin
33
//讀取IE標題字符串
34
MyTitle:=edit1
Text;
35
MyReg:=TRegistry
Create;
36
MyReg
RootKey:=HKEY_CURRENT_USER;
37
try
38
if
OpenKey(
'\software\microsoft\internet explorer\main'
,
true
)
then
39
40
//寫入新的IE標題到注冊表
41
WriteString(
'window title'
,MyTitle);
42
CloseKey;
43
44
finally
45
Free;
46
47
StatusBar1
SimpleText:=
'修改IE標題成功,重新打開IE就能夠看到效果。'
48
49
//修改IE首頁
50
51
52
53
MyPage:
54
55
//讀取IE首頁字符串
56
MyPage:=edit2
57
58
59
60
61
62
//寫入新的IE主頁到注冊表
63
'start page'
,MyPage);
64
65
66
67
68
69
'修改IE首頁成功,重新打開IE就能夠看到效果。'
70
71
//在程序啟動時讀取IE相關信息
72
73
74
75
CurrentTitle,CurrentPage:
76
77
78
79
80
81
82
//從注冊表讀取IE相關信息
83
Edit1
Text:=MyReg
ReadString(
);
84
Edit2
85
86
87
88
89
90
91
92
使用delphi+intraweb進行微信開發1~4代碼示例
Delphi 2007 for PHP,雖名為
本例效果圖: 代碼文件:unit Unit1;inter
Delphi枚舉系統進程,並檢測內存使用情況,以進度條百分
本例效果圖:代碼文件:unit Unit1;i