home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Help / Examples / Batchmv / BATMOVE.DFM / BATMOVE.txt
Encoding:
Text File  |  1999-08-11  |  6.1 KB  |  329 lines

  1. object Form1: TForm1
  2.   Left = 169
  3.   Top = 154
  4.   Width = 766
  5.   Height = 584
  6.   Caption = 'TBatchMove Example'
  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.   Position = poDesktopCenter
  15.   OnCreate = FormCreate
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Bevel1: TBevel
  20.     Left = 312
  21.     Top = 8
  22.     Width = 265
  23.     Height = 169
  24.     Shape = bsFrame
  25.     Style = bsRaised
  26.   end
  27.   object Label6: TLabel
  28.     Left = 344
  29.     Top = 48
  30.     Width = 25
  31.     Height = 13
  32.     Caption = 'Alias:'
  33.   end
  34.   object Label7: TLabel
  35.     Left = 324
  36.     Top = 88
  37.     Width = 61
  38.     Height = 13
  39.     Caption = 'Table Name:'
  40.   end
  41.   object Label8: TLabel
  42.     Left = 348
  43.     Top = 128
  44.     Width = 29
  45.     Height = 13
  46.     Caption = 'Index:'
  47.   end
  48.   object Bevel2: TBevel
  49.     Left = 16
  50.     Top = 8
  51.     Width = 265
  52.     Height = 169
  53.     Shape = bsFrame
  54.     Style = bsRaised
  55.   end
  56.   object Label5: TLabel
  57.     Left = 48
  58.     Top = 128
  59.     Width = 29
  60.     Height = 13
  61.     Caption = 'Index:'
  62.   end
  63.   object Label4: TLabel
  64.     Left = 24
  65.     Top = 88
  66.     Width = 61
  67.     Height = 13
  68.     Caption = 'Table Name:'
  69.   end
  70.   object Label3: TLabel
  71.     Left = 48
  72.     Top = 48
  73.     Width = 25
  74.     Height = 13
  75.     Caption = 'Alias:'
  76.   end
  77.   object Bevel3: TBevel
  78.     Left = 16
  79.     Top = 192
  80.     Width = 561
  81.     Height = 201
  82.     Shape = bsFrame
  83.     Style = bsRaised
  84.   end
  85.   object Label1: TLabel
  86.     Left = 104
  87.     Top = 16
  88.     Width = 77
  89.     Height = 13
  90.     Caption = 'Source Table'
  91.     Font.Charset = DEFAULT_CHARSET
  92.     Font.Color = clWindowText
  93.     Font.Height = -12
  94.     Font.Name = 'MS Sans Serif'
  95.     Font.Style = [fsBold]
  96.     ParentFont = False
  97.   end
  98.   object Label2: TLabel
  99.     Left = 400
  100.     Top = 16
  101.     Width = 101
  102.     Height = 13
  103.     Caption = 'Destination Table'
  104.     Font.Charset = DEFAULT_CHARSET
  105.     Font.Color = clWindowText
  106.     Font.Height = -12
  107.     Font.Name = 'MS Sans Serif'
  108.     Font.Style = [fsBold]
  109.     ParentFont = False
  110.   end
  111.   object Label10: TLabel
  112.     Left = 224
  113.     Top = 200
  114.     Width = 131
  115.     Height = 13
  116.     Caption = 'Options/Error Handling'
  117.     Font.Charset = DEFAULT_CHARSET
  118.     Font.Color = clWindowText
  119.     Font.Height = -12
  120.     Font.Name = 'MS Sans Serif'
  121.     Font.Style = [fsBold]
  122.     ParentFont = False
  123.   end
  124.   object Label9: TLabel
  125.     Left = 28
  126.     Top = 336
  127.     Width = 61
  128.     Height = 13
  129.     Caption = 'Batch Mode:'
  130.   end
  131.   object Label12: TLabel
  132.     Left = 288
  133.     Top = 232
  134.     Width = 110
  135.     Height = 13
  136.     Caption = 'Changed Table Name: '
  137.   end
  138.   object Label13: TLabel
  139.     Left = 272
  140.     Top = 272
  141.     Width = 128
  142.     Height = 13
  143.     Caption = 'Key Violation Table Name: '
  144.   end
  145.   object Label14: TLabel
  146.     Left = 296
  147.     Top = 312
  148.     Width = 105
  149.     Height = 13
  150.     Caption = 'Problem Table Name: '
  151.   end
  152.   object Label11: TLabel
  153.     Left = 256
  154.     Top = 352
  155.     Width = 145
  156.     Height = 13
  157.     Caption = 'Record Count (Leave 0 for all):'
  158.   end
  159.   object cmbxDestAlias: TComboBox
  160.     Left = 400
  161.     Top = 48
  162.     Width = 145
  163.     Height = 21
  164.     Style = csDropDownList
  165.     ItemHeight = 13
  166.     Sorted = True
  167.     TabOrder = 0
  168.     OnChange = cmbxDestAliasChange
  169.   end
  170.   object cmbxDestTable: TComboBox
  171.     Left = 400
  172.     Top = 88
  173.     Width = 145
  174.     Height = 21
  175.     ItemHeight = 13
  176.     Sorted = True
  177.     TabOrder = 1
  178.     OnChange = cmbxDestTableChange
  179.   end
  180.   object cmbxDestIndex: TComboBox
  181.     Left = 400
  182.     Top = 128
  183.     Width = 145
  184.     Height = 21
  185.     Style = csDropDownList
  186.     ItemHeight = 13
  187.     Sorted = True
  188.     TabOrder = 2
  189.     OnChange = cmbxDestIndexChange
  190.   end
  191.   object cmbxSourceAlias: TComboBox
  192.     Left = 96
  193.     Top = 48
  194.     Width = 145
  195.     Height = 21
  196.     Style = csDropDownList
  197.     ItemHeight = 13
  198.     Sorted = True
  199.     TabOrder = 3
  200.     OnChange = cmbxSourceAliasChange
  201.   end
  202.   object cmbxSourceTable: TComboBox
  203.     Left = 96
  204.     Top = 88
  205.     Width = 145
  206.     Height = 21
  207.     Style = csDropDownList
  208.     ItemHeight = 13
  209.     Sorted = True
  210.     TabOrder = 4
  211.     OnChange = cmbxSourceTableChange
  212.   end
  213.   object cmbxSourceIndex: TComboBox
  214.     Left = 96
  215.     Top = 128
  216.     Width = 145
  217.     Height = 21
  218.     Style = csDropDownList
  219.     ItemHeight = 13
  220.     Sorted = True
  221.     TabOrder = 5
  222.     OnChange = cmbxSourceIndexChange
  223.   end
  224.   object cmbxMode: TComboBox
  225.     Left = 96
  226.     Top = 336
  227.     Width = 145
  228.     Height = 21
  229.     Style = csDropDownList
  230.     ItemHeight = 13
  231.     Sorted = True
  232.     TabOrder = 6
  233.     OnChange = cmbxModeChange
  234.     Items.Strings = (
  235.       'Append'
  236.       'Append Update'
  237.       'Copy'
  238.       'Delete'
  239.       'Update')
  240.   end
  241.   object Button1: TButton
  242.     Left = 230
  243.     Top = 404
  244.     Width = 131
  245.     Height = 25
  246.     Caption = 'Execute BatchMove'
  247.     TabOrder = 7
  248.     OnClick = Button1Click
  249.   end
  250.   object chkbxAbortKey: TCheckBox
  251.     Left = 32
  252.     Top = 232
  253.     Width = 193
  254.     Height = 17
  255.     Caption = 'Abort on key violation'
  256.     Checked = True
  257.     State = cbChecked
  258.     TabOrder = 8
  259.     OnClick = chkbxAbortKeyClick
  260.   end
  261.   object chkbxAbortProblem: TCheckBox
  262.     Left = 32
  263.     Top = 264
  264.     Width = 193
  265.     Height = 17
  266.     Caption = 'Abort on problem (data is truncated)'
  267.     Checked = True
  268.     State = cbChecked
  269.     TabOrder = 9
  270.     OnClick = chkbxAbortProblemClick
  271.   end
  272.   object chkbxTrans: TCheckBox
  273.     Left = 32
  274.     Top = 296
  275.     Width = 193
  276.     Height = 17
  277.     Caption = 'Transliterate Characters'
  278.     Checked = True
  279.     State = cbChecked
  280.     TabOrder = 10
  281.     OnClick = chkbxTransClick
  282.   end
  283.   object edtChangedTable: TEdit
  284.     Left = 416
  285.     Top = 232
  286.     Width = 121
  287.     Height = 21
  288.     TabOrder = 11
  289.   end
  290.   object edtKeyVioTbl: TEdit
  291.     Left = 416
  292.     Top = 272
  293.     Width = 121
  294.     Height = 21
  295.     TabOrder = 12
  296.   end
  297.   object edtProbTbl: TEdit
  298.     Left = 416
  299.     Top = 312
  300.     Width = 121
  301.     Height = 21
  302.     TabOrder = 13
  303.   end
  304.   object edtRecCount: TEdit
  305.     Left = 416
  306.     Top = 352
  307.     Width = 121
  308.     Height = 21
  309.     TabOrder = 14
  310.     Text = '0'
  311.     OnKeyPress = edtRecCountKeyPress
  312.   end
  313.   object BatchMove1: TBatchMove
  314.     Destination = tblDest
  315.     Source = tblSource
  316.     Transliterate = False
  317.     Left = 280
  318.     Top = 88
  319.   end
  320.   object tblSource: TTable
  321.     Left = 280
  322.     Top = 24
  323.   end
  324.   object tblDest: TTable
  325.     Left = 280
  326.     Top = 144
  327.   end
  328. end
  329.