home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / Chip_1998-09_cd.bin / sharewar / fmedit / Fmedit95.exe / 0 / RCDATA / TMAINFORM / TMAINFORM.txt
Text File  |  1998-01-18  |  5KB  |  231 lines

  1. object MainForm: TMainForm
  2.   Left = 239
  3.   Top = 149
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'FmEdit95 - Multiple File Handling'
  7.   ClientHeight = 381
  8.   ClientWidth = 339
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Menu = MainMenu
  14.   Position = poScreenCenter
  15.   OnActivate = FormActivate
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Panel2: TPanel
  20.     Left = 0
  21.     Top = 0
  22.     Width = 161
  23.     Height = 381
  24.     Align = alLeft
  25.     TabOrder = 0
  26.     OnEnter = Panel2Enter
  27.     OnExit = Panel2Exit
  28.     object DrivesA: TDriveComboBox
  29.       Left = 4
  30.       Top = 5
  31.       Width = 154
  32.       Height = 19
  33.       DirList = FoldersA
  34.       TabOrder = 0
  35.     end
  36.     object StatusA: TStatusBar
  37.       Left = 1
  38.       Top = 357
  39.       Width = 159
  40.       Height = 23
  41.       Panels = <>
  42.       SimplePanel = True
  43.       SizeGrip = False
  44.     end
  45.     object FoldersA: TDirectoryListBox
  46.       Left = 3
  47.       Top = 29
  48.       Width = 156
  49.       Height = 116
  50.       FileList = FilesA
  51.       ItemHeight = 16
  52.       TabOrder = 2
  53.     end
  54.     object FilesA: TFileListBox
  55.       Left = 3
  56.       Top = 149
  57.       Width = 156
  58.       Height = 204
  59.       ItemHeight = 13
  60.       MultiSelect = True
  61.       PopupMenu = PopupMenu
  62.       TabOrder = 3
  63.     end
  64.     object Button1: TButton
  65.       Left = 3
  66.       Top = 360
  67.       Width = 50
  68.       Height = 19
  69.       Caption = 'Copy >'
  70.       TabOrder = 4
  71.       OnClick = CopyFiles
  72.     end
  73.     object Button2: TButton
  74.       Left = 56
  75.       Top = 360
  76.       Width = 50
  77.       Height = 19
  78.       Caption = 'Move >'
  79.       TabOrder = 5
  80.       OnClick = MoveFiles
  81.     end
  82.     object Button3: TButton
  83.       Left = 108
  84.       Top = 360
  85.       Width = 50
  86.       Height = 19
  87.       Caption = 'Delete'
  88.       TabOrder = 6
  89.       OnClick = DeleteFile
  90.     end
  91.     object Newdir: TDirectoryEdit
  92.       Left = 4
  93.       Top = 5
  94.       Width = 154
  95.       Height = 19
  96.       OnAfterDialog = NewdirAfterDialog
  97.       DialogOptions = [sdAllowCreate, sdPerformCreate]
  98.       NumGlyphs = 1
  99.       TabOrder = 7
  100.       Text = 'Create New Folder'
  101.       Visible = False
  102.     end
  103.   end
  104.   object PanelB: TPanel
  105.     Left = 176
  106.     Top = 0
  107.     Width = 163
  108.     Height = 381
  109.     Align = alRight
  110.     TabOrder = 1
  111.     OnEnter = PanelBEnter
  112.     OnExit = PanelBExit
  113.     object StatusB: TStatusBar
  114.       Left = 1
  115.       Top = 357
  116.       Width = 161
  117.       Height = 23
  118.       Panels = <>
  119.       SimplePanel = True
  120.       SizeGrip = False
  121.     end
  122.     object DrivesB: TDriveComboBox
  123.       Left = 5
  124.       Top = 5
  125.       Width = 154
  126.       Height = 19
  127.       DirList = FoldersB
  128.       TabOrder = 1
  129.     end
  130.     object FoldersB: TDirectoryListBox
  131.       Left = 3
  132.       Top = 29
  133.       Width = 156
  134.       Height = 116
  135.       FileList = FilesB
  136.       ItemHeight = 16
  137.       TabOrder = 2
  138.     end
  139.     object FilesB: TFileListBox
  140.       Left = 3
  141.       Top = 149
  142.       Width = 156
  143.       Height = 204
  144.       ItemHeight = 13
  145.       MultiSelect = True
  146.       PopupMenu = PopupMenu
  147.       TabOrder = 3
  148.     end
  149.     object Button4: TButton
  150.       Left = 108
  151.       Top = 360
  152.       Width = 50
  153.       Height = 19
  154.       Caption = '< Copy'
  155.       TabOrder = 4
  156.       OnClick = CopyFiles
  157.     end
  158.     object Button5: TButton
  159.       Left = 56
  160.       Top = 360
  161.       Width = 50
  162.       Height = 19
  163.       Caption = '< Move'
  164.       TabOrder = 5
  165.       OnClick = MoveFiles
  166.     end
  167.     object Button6: TButton
  168.       Left = 3
  169.       Top = 360
  170.       Width = 50
  171.       Height = 19
  172.       Caption = 'Delete'
  173.       TabOrder = 6
  174.       OnClick = DeleteFile
  175.     end
  176.   end
  177.   object MainMenu: TMainMenu
  178.     Left = 191
  179.     Top = 159
  180.     object FileItem: TMenuItem
  181.       Caption = '&Exit'
  182.       ShortCut = 0
  183.       OnClick = FileExitItemClick
  184.     end
  185.     object CreateNewDir1: TMenuItem
  186.       Caption = '&Create New Folder'
  187.       ShortCut = 0
  188.       OnClick = CreateNewDir1Click
  189.     end
  190.   end
  191.   object PopupMenu: TPopupMenu
  192.     Left = 224
  193.     Top = 161
  194.     object CopyItem: TMenuItem
  195.       Caption = '&Copy'
  196.       ShortCut = 116
  197.       OnClick = CopyFiles
  198.     end
  199.     object MoveItem: TMenuItem
  200.       Caption = '&Move'
  201.       ShortCut = 117
  202.       OnClick = MoveFiles
  203.     end
  204.     object DeleteItem: TMenuItem
  205.       Caption = '&Delete'
  206.       ShortCut = 46
  207.       OnClick = DeleteFile
  208.     end
  209.     object N2: TMenuItem
  210.       Caption = '-'
  211.       ShortCut = 0
  212.     end
  213.     object SelectAllItem: TMenuItem
  214.       Caption = 'Select &All'
  215.       ShortCut = 0
  216.       OnClick = SelectAll
  217.     end
  218.     object InvertSelectionItem: TMenuItem
  219.       Caption = '&Invert Selection'
  220.       ShortCut = 0
  221.       OnClick = InvertSelection
  222.     end
  223.   end
  224.   object FileOperator1: TFileOperator
  225.     ProgressTitle = 'FmEdit - Multiple FIle Handling'
  226.     Left = 259
  227.     Top = 162
  228.     data = Null
  229.   end
  230. end
  231.