⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newdbfrm.dfm

📁 delphi本地数据库引擎
💻 DFM
字号:
object NewDBForm: TNewDBForm
  Left = 192
  Top = 133
  BorderStyle = bsDialog
  Caption = '新建数据库'
  ClientHeight = 261
  ClientWidth = 394
  Color = clBtnFace
  Font.Charset = GB2312_CHARSET
  Font.Color = clWindowText
  Font.Height = -12
  Font.Name = '宋体'
  Font.Style = []
  OldCreateOrder = False
  Position = poScreenCenter
  OnCreate = FormCreate
  PixelsPerInch = 96
  TextHeight = 12
  object DatabaseNameLabel: TLabel
    Left = 10
    Top = 14
    Width = 60
    Height = 12
    Caption = '数据库文件'
  end
  object OkButton: TButton
    Left = 310
    Top = 10
    Width = 75
    Height = 25
    Caption = '确定(&O)'
    Default = True
    TabOrder = 4
    OnClick = OkButtonClick
  end
  object CancelButton: TButton
    Left = 310
    Top = 47
    Width = 75
    Height = 25
    Cancel = True
    Caption = '取消(&C)'
    TabOrder = 5
    OnClick = CancelButtonClick
  end
  object HelpButton: TButton
    Left = 310
    Top = 84
    Width = 75
    Height = 25
    Caption = '帮助(&H)'
    TabOrder = 6
    OnClick = HelpButtonClick
  end
  object GroupBox1: TGroupBox
    Left = 8
    Top = 41
    Width = 290
    Height = 85
    TabOrder = 2
    object CompLevelLabel: TLabel
      Left = 12
      Top = 53
      Width = 48
      Height = 12
      Caption = '压缩级别'
    end
    object CompAlgoLabel: TLabel
      Left = 12
      Top = 25
      Width = 48
      Height = 12
      Caption = '压缩算法'
    end
    object CompressCheckBox: TCheckBox
      Left = 12
      Top = -2
      Width = 81
      Height = 17
      Caption = '压缩数据库'
      TabOrder = 0
      OnClick = CompressCheckBoxClick
    end
    object CompLevelComboBox: TComboBox
      Left = 83
      Top = 49
      Width = 192
      Height = 20
      Style = csDropDownList
      ItemHeight = 12
      TabOrder = 2
      Items.Strings = (
        '高比压缩'
        '普通压缩'
        '快速压缩'
        '最快压缩')
    end
    object CompAlgoComboBox: TComboBox
      Left = 83
      Top = 21
      Width = 192
      Height = 20
      Style = csDropDownList
      ItemHeight = 12
      TabOrder = 1
    end
  end
  object GroupBox2: TGroupBox
    Left = 8
    Top = 136
    Width = 290
    Height = 116
    TabOrder = 3
    object EncryptAlgoLabel: TLabel
      Left = 12
      Top = 28
      Width = 48
      Height = 12
      Caption = '加密算法'
    end
    object PasswordLabel: TLabel
      Left = 12
      Top = 56
      Width = 48
      Height = 12
      Caption = '访问口令'
    end
    object Password2Label: TLabel
      Left = 12
      Top = 84
      Width = 48
      Height = 12
      Caption = '口令确认'
    end
    object EncryptCheckBox: TCheckBox
      Left = 12
      Top = -2
      Width = 80
      Height = 17
      Caption = '加密数据库'
      TabOrder = 0
      OnClick = EncryptCheckBoxClick
    end
    object EncAlgoComboBox: TComboBox
      Left = 83
      Top = 24
      Width = 192
      Height = 20
      Style = csDropDownList
      ItemHeight = 12
      TabOrder = 1
    end
    object PasswordEdit: TEdit
      Left = 83
      Top = 52
      Width = 192
      Height = 20
      PasswordChar = '*'
      TabOrder = 2
    end
    object Password2Edit: TEdit
      Left = 83
      Top = 80
      Width = 192
      Height = 20
      PasswordChar = '*'
      TabOrder = 3
    end
  end
  object FileNameEdit: TEdit
    Left = 92
    Top = 10
    Width = 179
    Height = 20
    TabOrder = 0
  end
  object BrowseButton: TButton
    Left = 275
    Top = 10
    Width = 23
    Height = 20
    Caption = '...'
    Font.Charset = ANSI_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'MS Sans Serif'
    Font.Style = []
    ParentFont = False
    TabOrder = 1
    OnClick = BrowseButtonClick
  end
  object SaveDialog: TSaveDialog
    DefaultExt = '*.tdb'
    Filter = 'TinyDB Files(*.tdb)|*.tdb|All Files(*.*)|*.*'
    Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
    Left = 312
    Top = 168
  end
end

⌨️ 快捷键说明

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