form_Convert.dfm
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:4k
源码类别:

MTK

开发平台:

C++ Builder

  1. object frmConvert: TfrmConvert
  2.   Left = 406
  3.   Top = 400
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Convert to m12193.c'
  7.   ClientHeight = 158
  8.   ClientWidth = 281
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   OldCreateOrder = False
  16.   OnActivate = FormActivate
  17.   OnCreate = FormCreate
  18.   OnShow = FormShow
  19.   PixelsPerInch = 96
  20.   TextHeight = 13
  21.   object Panel1: TPanel
  22.     Left = 8
  23.     Top = 8
  24.     Width = 265
  25.     Height = 113
  26.     BevelOuter = bvLowered
  27.     TabOrder = 0
  28.     object lblLabel01: TLabel
  29.       Left = 8
  30.       Top = 12
  31.       Width = 58
  32.       Height = 13
  33.       Caption = 'RF Module :'
  34.     end
  35.     object lblLabel02: TLabel
  36.       Left = 16
  37.       Top = 42
  38.       Width = 108
  39.       Height = 13
  40.       Caption = 'Tx Propogation Delay :'
  41.     end
  42.     object cbxRFModule: TComboBox
  43.       Left = 72
  44.       Top = 10
  45.       Width = 185
  46.       Height = 21
  47.       Style = csDropDownList
  48.       Font.Charset = ANSI_CHARSET
  49.       Font.Color = clWindowText
  50.       Font.Height = -12
  51.       Font.Name = 'MS Sans Serif'
  52.       Font.Style = [fsBold]
  53.       ItemHeight = 13
  54.       ParentFont = False
  55.       TabOrder = 0
  56.       OnChange = cbxRFModuleChange
  57.       Items.Strings = (
  58.         'BRIGHT2'
  59.         'BRGIHT4'
  60.         'MT6119'
  61.         'AERO'
  62.         'CHICAGO2003 FOUNTAIN2'
  63.         'CHICAGO2003 AERO'
  64.         'KLM2003 FOUNTAIN2'
  65.         'KLM2003 SPRING'
  66.         'FOUNTAIN'
  67.         'FOUNTAIN2'
  68.         'SPRING')
  69.     end
  70.     object edtTxDelay: TEdit
  71.       Tag = 40
  72.       Left = 125
  73.       Top = 40
  74.       Width = 33
  75.       Height = 21
  76.       TabOrder = 1
  77.       Text = '40'
  78.       OnExit = edtTxDelayCheck
  79.     end
  80.     object rbtFromIni: TRadioButton
  81.       Left = 16
  82.       Top = 72
  83.       Width = 113
  84.       Height = 17
  85.       Caption = 'From .ini file'
  86.       Checked = True
  87.       TabOrder = 2
  88.       TabStop = True
  89.     end
  90.     object rbtFromFlash: TRadioButton
  91.       Left = 16
  92.       Top = 88
  93.       Width = 113
  94.       Height = 17
  95.       Caption = 'From flash data'
  96.       Enabled = False
  97.       TabOrder = 3
  98.     end
  99.   end
  100.   object btnConvert: TBitBtn
  101.     Left = 196
  102.     Top = 127
  103.     Width = 77
  104.     Height = 25
  105.     Caption = 'Convert'
  106.     TabOrder = 1
  107.     OnClick = btnConvertClick
  108.     Kind = bkRetry
  109.   end
  110.   object lblHint: TStaticText
  111.     Left = 212
  112.     Top = 88
  113.     Width = 33
  114.     Height = 17
  115.     BorderStyle = sbsSingle
  116.     Caption = 'lblHint'
  117.     Color = clYellow
  118.     ParentColor = False
  119.     TabOrder = 2
  120.     Visible = False
  121.   end
  122.   object txtStatus: TStaticText
  123.     Left = 8
  124.     Top = 136
  125.     Width = 177
  126.     Height = 17
  127.     AutoSize = False
  128.     BorderStyle = sbsSingle
  129.     Color = clWhite
  130.     Font.Charset = ANSI_CHARSET
  131.     Font.Color = clBlue
  132.     Font.Height = -12
  133.     Font.Name = 'MS Sans Serif'
  134.     Font.Style = []
  135.     ParentColor = False
  136.     ParentFont = False
  137.     TabOrder = 3
  138.   end
  139.   object SaveDialog: TSaveDialog
  140.     DefaultExt = 'c'
  141.     FileName = 'm12193.c'
  142.     Filter = 'c file (*.c)|*.c|All files (*.*)|*.*'
  143.     InitialDir = '.'
  144.     Title = 'Save to file'
  145.     Left = 180
  146.     Top = 48
  147.   end
  148.   object OpenDialog: TOpenDialog
  149.     DefaultExt = 'ini'
  150.     Filter = 
  151.       'Ini file (*.ini)|*.ini|Cal file (*.cal)|*.cal|All files (*.*)|*.' +
  152.       '*'
  153.     InitialDir = '.'
  154.     Title = 'Open file'
  155.     Left = 212
  156.     Top = 48
  157.   end
  158.   object HintTimer: TTimer
  159.     Enabled = False
  160.     Interval = 4000
  161.     OnTimer = HintTimerTimer
  162.     Left = 176
  163.     Top = 80
  164.   end
  165. end