Subversion Repositories calllib

Rev

Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 daniel-mar 1
object Form1: TForm1
2
  Left = 0
3
  Top = 0
4
  BorderIcons = [biSystemMenu, biMinimize]
5
  BorderStyle = bsSingle
6
  Caption = 'Call Lib Demo'
7
  ClientHeight = 342
8
  ClientWidth = 266
9
  Color = clBtnFace
10
  Font.Charset = DEFAULT_CHARSET
11
  Font.Color = clWindowText
12
  Font.Height = -11
13
  Font.Name = 'Tahoma'
14
  Font.Style = []
5 daniel-mar 15
  Position = poScreenCenter
2 daniel-mar 16
  OnShow = FormShow
17
  TextHeight = 13
18
  object Label1: TLabel
19
    Left = 8
20
    Top = 8
21
    Width = 112
22
    Height = 13
23
    Caption = 'Available TAPI devices:'
24
  end
25
  object Label2: TLabel
26
    Left = 8
27
    Top = 256
28
    Width = 73
29
    Height = 13
30
    Caption = 'Phone number:'
31
  end
32
  object DeviceListBox: TListBox
33
    Left = 8
34
    Top = 27
35
    Width = 250
36
    Height = 221
37
    ItemHeight = 13
38
    TabOrder = 0
39
    OnClick = DeviceListBoxClick
40
  end
41
  object CallBtn: TButton
42
    Left = 183
43
    Top = 302
44
    Width = 75
45
    Height = 25
46
    Caption = 'Make call'
47
    Default = True
48
    Enabled = False
49
    TabOrder = 2
50
    OnClick = CallBtnClick
51
  end
52
  object PhoneNumberEdit: TEdit
53
    Left = 8
54
    Top = 275
55
    Width = 250
56
    Height = 21
57
    TabOrder = 1
58
    OnChange = PhoneNumberEditChange
59
  end
60
end