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

MTK

开发平台:

C++ Builder

  1. object frmBarcodeDownload: TfrmBarcodeDownload
  2.   Left = 226
  3.   Top = 171
  4.   Width = 596
  5.   Height = 196
  6.   Caption = 'Barcode download'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnClose = FormClose
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 328
  20.     Top = 56
  21.     Width = 40
  22.     Height = 13
  23.     Caption = 'Barcode'
  24.   end
  25.   object Label4: TLabel
  26.     Left = 8
  27.     Top = 8
  28.     Width = 102
  29.     Height = 13
  30.     Caption = 'NVRAM database file'
  31.   end
  32.   object Label2: TLabel
  33.     Left = 8
  34.     Top = 56
  35.     Width = 106
  36.     Height = 13
  37.     Caption = 'Barcode increasement'
  38.   end
  39.   object edtBarcode: TEdit
  40.     Left = 144
  41.     Top = 72
  42.     Width = 433
  43.     Height = 21
  44.     TabOrder = 0
  45.     OnExit = BarcodeCheck
  46.   end
  47.   object btnLoadFromFlash: TButton
  48.     Left = 8
  49.     Top = 112
  50.     Width = 97
  51.     Height = 25
  52.     Caption = 'Load from flash'
  53.     TabOrder = 1
  54.     OnClick = btnLoadFromFlashClick
  55.   end
  56.   object btnSaveToFlash: TButton
  57.     Left = 120
  58.     Top = 112
  59.     Width = 97
  60.     Height = 25
  61.     Caption = 'Download to flash'
  62.     TabOrder = 2
  63.     OnClick = btnSaveToFlashClick
  64.   end
  65.   object btnLoadFromFile: TButton
  66.     Left = 408
  67.     Top = 112
  68.     Width = 75
  69.     Height = 25
  70.     Caption = 'Load from file'
  71.     TabOrder = 3
  72.     OnClick = btnLoadFromFileClick
  73.   end
  74.   object btnSaveToFile: TButton
  75.     Left = 496
  76.     Top = 112
  77.     Width = 75
  78.     Height = 25
  79.     Caption = 'Save to file'
  80.     TabOrder = 4
  81.     OnClick = btnSaveToFileClick
  82.   end
  83.   object lblHint: TStaticText
  84.     Left = 552
  85.     Top = 6
  86.     Width = 33
  87.     Height = 17
  88.     BorderStyle = sbsSingle
  89.     Caption = 'lblHint'
  90.     Color = clYellow
  91.     ParentColor = False
  92.     TabOrder = 5
  93.     Visible = False
  94.   end
  95.   object sbBarcode: TStatusBar
  96.     Left = 0
  97.     Top = 142
  98.     Width = 588
  99.     Height = 27
  100.     Panels = <
  101.       item
  102.         Width = 50
  103.       end>
  104.     SimplePanel = False
  105.   end
  106.   object btnChangeNVRAMDatabaseFile: TButton
  107.     Left = 232
  108.     Top = 112
  109.     Width = 161
  110.     Height = 25
  111.     Caption = 'Change NVRAM Database File'
  112.     TabOrder = 7
  113.     OnClick = btnChangeNVRAMDatabaseFileClick
  114.   end
  115.   object stNVRAMDatabaseFile: TStaticText
  116.     Left = 8
  117.     Top = 24
  118.     Width = 569
  119.     Height = 17
  120.     AutoSize = False
  121.     BorderStyle = sbsSunken
  122.     Color = clGradientActiveCaption
  123.     ParentColor = False
  124.     TabOrder = 8
  125.   end
  126.   object cbBarcodeIncreasement: TComboBox
  127.     Left = 8
  128.     Top = 72
  129.     Width = 105
  130.     Height = 21
  131.     ItemHeight = 13
  132.     ItemIndex = 0
  133.     TabOrder = 9
  134.     Text = '0'
  135.     Items.Strings = (
  136.       '0'
  137.       '1'
  138.       '2'
  139.       '3'
  140.       '4'
  141.       '5'
  142.       '6'
  143.       '7'
  144.       '8'
  145.       '9')
  146.   end
  147.   object OpenDialog: TOpenDialog
  148.     DefaultExt = 'ini'
  149.     Filter = 'Ini file (*.ini)|*.ini|All file (*.*)|*.*'
  150.     Title = 'Open ini file'
  151.     Left = 552
  152.     Top = 40
  153.   end
  154.   object SaveDialog: TSaveDialog
  155.     DefaultExt = 'ini'
  156.     Filter = 'ini file (*.ini)|*.ini|all file (*.*)|*.*'
  157.     Title = 'Save to ini file'
  158.     Left = 552
  159.     Top = 80
  160.   end
  161.   object HintTimer: TTimer
  162.     Enabled = False
  163.     OnTimer = HintTimerTimer
  164.     Left = 552
  165.     Top = 120
  166.   end
  167. end