Subversion Repositories calllib

Rev

Go to most recent revision | Details | 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 = []
15
  OldCreateOrder = False
16
  OnShow = FormShow
17
  PixelsPerInch = 96
18
  TextHeight = 13
19
  object Label1: TLabel
20
    Left = 8
21
    Top = 8
22
    Width = 112
23
    Height = 13
24
    Caption = 'Available TAPI devices:'
25
  end
26
  object Label2: TLabel
27
    Left = 8
28
    Top = 256
29
    Width = 73
30
    Height = 13
31
    Caption = 'Phone number:'
32
  end
33
  object DeviceListBox: TListBox
34
    Left = 8
35
    Top = 27
36
    Width = 250
37
    Height = 221
38
    ItemHeight = 13
39
    TabOrder = 0
40
    OnClick = DeviceListBoxClick
41
  end
42
  object CallBtn: TButton
43
    Left = 183
44
    Top = 302
45
    Width = 75
46
    Height = 25
47
    Caption = 'Make call'
48
    Default = True
49
    Enabled = False
50
    TabOrder = 2
51
    OnClick = CallBtnClick
52
  end
53
  object PhoneNumberEdit: TEdit
54
    Left = 8
55
    Top = 275
56
    Width = 250
57
    Height = 21
58
    TabOrder = 1
59
    OnChange = PhoneNumberEditChange
60
  end
61
end