forked from perevoznyk/php4delphi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUnit1.dfm
91 lines (91 loc) · 1.71 KB
/
Unit1.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
object Form1: TForm1
Left = 309
Top = 184
BorderStyle = bsDialog
Caption = 'Built-in functions and class sample'
ClientHeight = 331
ClientWidth = 460
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
OnCreate = FormCreate
OnDestroy = FormDestroy
PixelsPerInch = 96
TextHeight = 13
object Memo1: TMemo
Left = 8
Top = 8
Width = 329
Height = 89
Lines.Strings = (
'delphi_Show_Message("Hello, Delphi!");')
TabOrder = 0
end
object Memo2: TMemo
Left = 8
Top = 108
Width = 329
Height = 89
Lines.Strings = (
'$a = new php4delphi_author();'
'$a->send_email();')
TabOrder = 1
end
object Memo3: TMemo
Left = 8
Top = 212
Width = 329
Height = 89
Lines.Strings = (
'echo delphi_get_system_directory();')
TabOrder = 2
end
object Button1: TButton
Left = 364
Top = 60
Width = 75
Height = 25
Caption = 'Execute'
TabOrder = 3
OnClick = Button1Click
end
object Button2: TButton
Left = 364
Top = 160
Width = 75
Height = 25
Caption = 'Execute'
TabOrder = 4
OnClick = Button2Click
end
object Button3: TButton
Left = 372
Top = 268
Width = 75
Height = 25
Caption = 'Execute'
TabOrder = 5
OnClick = Button3Click
end
object psvPHP1: TpsvPHP
Variables = <
item
Name = 'test'
Value = 'test'
end>
Left = 112
Top = 140
end
object PHPEngine: TPHPEngine
HandleErrors = False
Constants = <>
ReportDLLError = False
Left = 116
Top = 252
end
end