forked from perevoznyk/php4delphi
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathUnit1.dfm
80 lines (80 loc) · 1.58 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
object frmLibDemo: TfrmLibDemo
Left = 395
Top = 303
BorderStyle = bsDialog
Caption = 'PHP Demo'
ClientHeight = 209
ClientWidth = 377
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
PixelsPerInch = 96
TextHeight = 13
object Memo1: TMemo
Left = 8
Top = 8
Width = 185
Height = 189
Lines.Strings = (
'formcaption("Hello from PHP");'
'buttonclick();'
'my_createcontrol();')
TabOrder = 0
end
object Button1: TButton
Left = 292
Top = 172
Width = 75
Height = 25
Caption = 'Click'
TabOrder = 1
OnClick = Button1Click
end
object btnExecute: TButton
Left = 292
Top = 12
Width = 75
Height = 25
Caption = 'Execute'
TabOrder = 2
OnClick = btnExecuteClick
end
object psvPHP1: TpsvPHP
Variables = <>
Left = 32
Top = 28
end
object PHPLibrary1: TPHPLibrary
LibraryName = 'SimpleLib'
Functions = <
item
FunctionName = 'formcaption'
Tag = 0
Parameters = <
item
Name = 'Param1'
ParamType = tpString
end>
OnExecute = PHPLibrary1Functions0Execute
end
item
FunctionName = 'buttonclick'
Tag = 0
Parameters = <>
OnExecute = PHPLibrary1Functions1Execute
end>
Left = 88
Top = 108
end
object PHPEngine: TPHPEngine
Constants = <>
ReportDLLError = False
Left = 212
Top = 64
end
end