File: unit29.lfm

package info (click to toggle)
dozzaqueux 3.35-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 5,620 kB
  • ctags: 1,791
  • sloc: pascal: 34,605; xml: 961; makefile: 50; sh: 32
file content (98 lines) | stat: -rwxr-xr-x 2,486 bytes parent folder | download | duplicates (5)
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
92
93
94
95
96
97
98
object saisie_derivees: Tsaisie_derivees
  Left = 336
  Height = 212
  Top = 179
  Width = 623
  ActiveControl = CheckBoxDerivees
  BorderIcons = [biSystemMenu, biMinimize]
  BorderStyle = bsSingle
  Caption = 'Calcul des dérivées'
  ClientHeight = 212
  ClientWidth = 623
  OnCreate = FormCreate
  OnShow = FormShow
  LCLVersion = '1.2.2.0'
  object Label1: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = CheckBoxDerivees
    AnchorSideTop.Side = asrBottom
    Left = 10
    Height = 20
    Top = 44
    Width = 521
    BorderSpacing.Left = 10
    BorderSpacing.Top = 10
    Caption = 'Le calcul de la dérivée numérique en V0 se fait par: (f(V0+h)-f(V0-h))/(2h)'
    Font.Style = [fsBold]
    ParentColor = False
    ParentFont = False
  end
  object Label2: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Label1
    AnchorSideTop.Side = asrBottom
    Left = 10
    Height = 20
    Top = 74
    Width = 196
    BorderSpacing.Left = 10
    BorderSpacing.Top = 10
    Caption = 'Choix de h: volume burette/'
    Font.Style = [fsBold]
    ParentColor = False
    ParentFont = False
  end
  object CheckBoxDerivees: TCheckBox
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Owner
    Left = 10
    Height = 24
    Top = 10
    Width = 384
    BorderSpacing.Left = 10
    BorderSpacing.Top = 10
    Caption = 'Activer le calcul des dérivées par rapport au volume'
    Font.Style = [fsBold]
    ParentFont = False
    TabOrder = 0
  end
  object SpinEditDerivee: TSpinEdit
    AnchorSideLeft.Control = Label2
    AnchorSideLeft.Side = asrBottom
    AnchorSideTop.Control = Label2
    AnchorSideTop.Side = asrCenter
    Left = 216
    Height = 28
    Top = 70
    Width = 90
    BorderSpacing.Left = 10
    MaxValue = 10000000
    MinValue = 10
    TabOrder = 1
    Value = 100
  end
  object BitBtn1: TBitBtn
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = SpinEditDerivee
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 10
    Height = 94
    Top = 108
    Width = 603
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Left = 10
    BorderSpacing.Top = 10
    BorderSpacing.Right = 10
    BorderSpacing.Bottom = 10
    Caption = '&OK'
    Default = True
    Kind = bkOK
    ModalResult = 1
    OnClick = BitBtn1Click
    TabOrder = 2
  end
end