unit1.dfm

来自「Advanced Data Import Component Suite for」· DFM 代码 · 共 72 行

DFM
72
字号
object Form1: TForm1
  Left = 330
  Top = 202
  Caption = 'QuickImport3 Demo -- Import to the user defined destination'
  ClientHeight = 406
  ClientWidth = 429
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  OldCreateOrder = True
  Position = poScreenCenter
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 13
  object Button1: TButton
    Left = 8
    Top = 8
    Width = 75
    Height = 25
    Caption = 'Import !'
    TabOrder = 0
    OnClick = Button1Click
  end
  object StringGrid1: TStringGrid
    Left = 8
    Top = 40
    Width = 412
    Height = 367
    DefaultRowHeight = 18
    FixedCols = 0
    RowCount = 19
    TabOrder = 1
  end
  object Button2: TButton
    Left = 345
    Top = 8
    Width = 75
    Height = 25
    Caption = 'Clear Grid'
    TabOrder = 2
    OnClick = Button2Click
  end
  object QImportXLS1: TQImport3XLS
    ImportDestination = qidUserDefined
    Map.Strings = (
      'Name=A1-A18'
      'Capital=B1-B18'
      'Continent=C1-C18'
      'Area=D1-D18'
      'Population=E1-E18')
    Formats.BooleanTrue.Strings = (
      'True')
    Formats.BooleanFalse.Strings = (
      'False')
    Formats.NullValues.Strings = (
      'Null')
    FieldFormats = <>
    ErrorLogFileName = 'error.log'
    CommitRecCount = 1000
    CommitAfterDone = False
    AddType = qatInsert
    OnBeforeImport = QImportXLS1BeforeImport
    OnAfterImport = QImportXLS1AfterImport
    OnUserDefinedImport = QImportXLS1UserDefinedImport
    Left = 96
    Top = 8
  end
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?