home *** CD-ROM | disk | FTP | other *** search
/ Hot Shareware 32 / hot34.iso / ficheros / 9APLI / GRS1_20.ZIP / _SETUP.1 / Pace.exe / 0 / RCDATA / TMAINFORM / TMAINFORM.txt < prev   
Text File  |  1998-04-09  |  7KB  |  316 lines

  1. object MainForm: TMainForm
  2.   Left = 233
  3.   Top = 137
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Labmyc Pace'
  7.   ClientHeight = 199
  8.   ClientWidth = 329
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Icon.Data = {<image000.ico>}
  14.   Position = poScreenCenter
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object DistanceBox: TGroupBox
  19.     Left = 0
  20.     Top = 0
  21.     Width = 105
  22.     Height = 177
  23.     Caption = 'Distance'
  24.     TabOrder = 0
  25.     object MileButton: TRadioButton
  26.       Left = 8
  27.       Top = 152
  28.       Width = 73
  29.       Height = 17
  30.       Hint = 'Select for miles'
  31.       Caption = 'miles'
  32.       ParentShowHint = False
  33.       ShowHint = True
  34.       TabOrder = 3
  35.       OnClick = MileButtonClick
  36.       OnEnter = MileButtonEnter
  37.     end
  38.     object KiloButton: TRadioButton
  39.       Left = 8
  40.       Top = 136
  41.       Width = 81
  42.       Height = 17
  43.       Hint = 'Select for kilometers'
  44.       Caption = 'kilometers'
  45.       Checked = True
  46.       ParentShowHint = False
  47.       ShowHint = True
  48.       TabOrder = 2
  49.       TabStop = True
  50.       OnClick = KiloButtonClick
  51.       OnEnter = KiloButtonEnter
  52.     end
  53.     object DistanceList: TListBox
  54.       Left = 8
  55.       Top = 56
  56.       Width = 89
  57.       Height = 73
  58.       Hint = 'Select distance'
  59.       ItemHeight = 13
  60.       Items.Strings = (
  61.         '10 km'
  62.         '15 km'
  63.         '10 mile'
  64.         '21.1 km'
  65.         '32 km'
  66.         '20 mile'
  67.         '42.2 km'
  68.         '56 km'
  69.         'Other')
  70.       ParentShowHint = False
  71.       ShowHint = True
  72.       TabOrder = 1
  73.       OnClick = DistanceListClick
  74.     end
  75.     object DistanceEdit: TEdit
  76.       Left = 8
  77.       Top = 24
  78.       Width = 89
  79.       Height = 21
  80.       Hint = 'Enter distance'
  81.       ParentShowHint = False
  82.       ShowHint = True
  83.       TabOrder = 0
  84.       Text = '10'
  85.       OnChange = DistanceEditChange
  86.       OnEnter = DistanceEditEnter
  87.     end
  88.   end
  89.   object PaceBox: TGroupBox
  90.     Left = 112
  91.     Top = 0
  92.     Width = 105
  93.     Height = 177
  94.     Caption = 'Pace'
  95.     TabOrder = 1
  96.     object Label1: TLabel
  97.       Left = 16
  98.       Top = 107
  99.       Width = 73
  100.       Height = 15
  101.       Alignment = taCenter
  102.       AutoSize = False
  103.       Caption = 'min/km'
  104.     end
  105.     object MinLabel: TLabel
  106.       Left = 16
  107.       Top = 45
  108.       Width = 57
  109.       Height = 15
  110.       Alignment = taCenter
  111.       AutoSize = False
  112.       Caption = 'minutes'
  113.     end
  114.     object SecLabel: TLabel
  115.       Left = 16
  116.       Top = 86
  117.       Width = 57
  118.       Height = 15
  119.       Alignment = taCenter
  120.       AutoSize = False
  121.       Caption = 'seconds'
  122.     end
  123.     object PaceMinEdit: TEdit
  124.       Left = 16
  125.       Top = 24
  126.       Width = 57
  127.       Height = 21
  128.       Hint = 'Enter pace minutes'
  129.       ParentShowHint = False
  130.       ShowHint = True
  131.       TabOrder = 1
  132.       OnChange = PaceMinEditChange
  133.       OnExit = PaceMinEditExit
  134.     end
  135.     object UpDownMin: TUpDown
  136.       Left = 73
  137.       Top = 24
  138.       Width = 16
  139.       Height = 21
  140.       Min = -1
  141.       Max = 60
  142.       Position = 4
  143.       TabOrder = 3
  144.       Wrap = False
  145.       OnClick = UpDownMinClick
  146.     end
  147.     object UpDownSec: TUpDown
  148.       Left = 72
  149.       Top = 64
  150.       Width = 16
  151.       Height = 21
  152.       Min = -1
  153.       Max = 60
  154.       Position = 0
  155.       TabOrder = 4
  156.       Wrap = False
  157.       OnClick = UpDownSecClick
  158.     end
  159.     object PaceSecEdit: TEdit
  160.       Left = 16
  161.       Top = 64
  162.       Width = 57
  163.       Height = 21
  164.       Hint = 'Enter pace seconds'
  165.       ParentShowHint = False
  166.       ShowHint = True
  167.       TabOrder = 2
  168.       OnChange = PaceSecEditChange
  169.       OnExit = PaceSecEditExit
  170.     end
  171.     object PaceButton: TButton
  172.       Left = 8
  173.       Top = 144
  174.       Width = 89
  175.       Height = 25
  176.       Hint = 'Press to calculate pace'
  177.       Caption = 'Calculate &Pace'
  178.       ParentShowHint = False
  179.       ShowHint = True
  180.       TabOrder = 0
  181.       OnClick = PaceCalc
  182.     end
  183.   end
  184.   object StatusBar: TStatusBar
  185.     Left = 0
  186.     Top = 178
  187.     Width = 329
  188.     Height = 21
  189.     Panels = <
  190.       item
  191.         Width = 50
  192.       end>
  193.     SimplePanel = False
  194.   end
  195.   object TimeBox: TGroupBox
  196.     Left = 224
  197.     Top = 0
  198.     Width = 105
  199.     Height = 177
  200.     Caption = 'Duration'
  201.     TabOrder = 2
  202.     object Label3: TLabel
  203.       Left = 16
  204.       Top = 85
  205.       Width = 57
  206.       Height = 15
  207.       Alignment = taCenter
  208.       AutoSize = False
  209.       Caption = 'minutes'
  210.     end
  211.     object Label4: TLabel
  212.       Left = 16
  213.       Top = 126
  214.       Width = 57
  215.       Height = 15
  216.       Alignment = taCenter
  217.       AutoSize = False
  218.       Caption = 'seconds'
  219.     end
  220.     object Label5: TLabel
  221.       Left = 16
  222.       Top = 45
  223.       Width = 57
  224.       Height = 15
  225.       Alignment = taCenter
  226.       AutoSize = False
  227.       Caption = 'hours'
  228.     end
  229.     object TimeMinEdit: TEdit
  230.       Left = 16
  231.       Top = 64
  232.       Width = 57
  233.       Height = 21
  234.       Hint = 'Enter duration minutes'
  235.       ParentShowHint = False
  236.       ShowHint = True
  237.       TabOrder = 2
  238.       OnChange = TimeMinEditChange
  239.       OnExit = TimeMinEditExit
  240.     end
  241.     object UpDownTMin: TUpDown
  242.       Left = 73
  243.       Top = 64
  244.       Width = 16
  245.       Height = 21
  246.       Min = -1
  247.       Max = 60
  248.       Position = 0
  249.       TabOrder = 5
  250.       Wrap = False
  251.       OnClick = UpDownTMinClick
  252.     end
  253.     object UpDownTSec: TUpDown
  254.       Left = 72
  255.       Top = 104
  256.       Width = 16
  257.       Height = 21
  258.       Min = -1
  259.       Max = 60
  260.       Position = 0
  261.       TabOrder = 6
  262.       Wrap = False
  263.       OnClick = UpDownTSecClick
  264.     end
  265.     object TimeSecEdit: TEdit
  266.       Left = 16
  267.       Top = 104
  268.       Width = 57
  269.       Height = 21
  270.       Hint = 'Enter duration seconds'
  271.       ParentShowHint = False
  272.       ShowHint = True
  273.       TabOrder = 3
  274.       OnChange = TimeSecEditChange
  275.       OnExit = TimeSecEditExit
  276.     end
  277.     object TimeHourEdit: TEdit
  278.       Left = 16
  279.       Top = 24
  280.       Width = 57
  281.       Height = 21
  282.       Hint = 'Enter duration hours'
  283.       ParentShowHint = False
  284.       ShowHint = True
  285.       TabOrder = 1
  286.       OnChange = TimeHourEditChange
  287.       OnExit = TimeHourEditExit
  288.     end
  289.     object UpDownTHour: TUpDown
  290.       Left = 73
  291.       Top = 24
  292.       Width = 16
  293.       Height = 21
  294.       Min = 0
  295.       Max = 1000
  296.       Position = 0
  297.       TabOrder = 4
  298.       Wrap = False
  299.       OnClick = UpDownTHourClick
  300.     end
  301.     object TimeButton: TButton
  302.       Left = 8
  303.       Top = 144
  304.       Width = 89
  305.       Height = 25
  306.       Hint = 'Press to calculate duration'
  307.       Caption = 'Calculate &Time'
  308.       Default = True
  309.       ParentShowHint = False
  310.       ShowHint = True
  311.       TabOrder = 0
  312.       OnClick = TimeCalc
  313.     end
  314.   end
  315. end
  316.