home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Runimage / Delphi50 / Help / Examples / Scrollba / SCROLDEM.DFM / SCROLDEM.txt < prev   
Encoding:
Text File  |  1999-08-11  |  5.3 KB  |  296 lines

  1. object ScrollForm1: TScrollForm1
  2.   Left = 200
  3.   Top = 108
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'ScrollDemo'
  7.   ClientHeight = 194
  8.   ClientWidth = 436
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Menu = MainMenu1
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Bevel1: TBevel
  19.     Left = 0
  20.     Top = 0
  21.     Width = 436
  22.     Height = 9
  23.     Align = alTop
  24.     Shape = bsTopLine
  25.   end
  26.   object Label3: TLabel
  27.     Left = 238
  28.     Top = 42
  29.     Width = 24
  30.     Height = 13
  31.     Caption = 'Units'
  32.   end
  33.   object Label4: TLabel
  34.     Left = 198
  35.     Top = 78
  36.     Width = 64
  37.     Height = 13
  38.     Caption = 'LargeChange'
  39.   end
  40.   object Label5: TLabel
  41.     Left = 242
  42.     Top = 117
  43.     Width = 20
  44.     Height = 13
  45.     Caption = 'Max'
  46.   end
  47.   object Label1: TLabel
  48.     Left = 280
  49.     Top = 16
  50.     Width = 47
  51.     Height = 13
  52.     Caption = 'Horizontal'
  53.   end
  54.   object Vertical: TLabel
  55.     Left = 376
  56.     Top = 16
  57.     Width = 35
  58.     Height = 13
  59.     Caption = 'Vertical'
  60.   end
  61.   object HScrollb: TScrollBar
  62.     Left = 9
  63.     Top = 169
  64.     Width = 159
  65.     Height = 16
  66.     Max = 32767
  67.     TabOrder = 1
  68.     OnScroll = HScrollbScroll
  69.   end
  70.   object VScrollb: TScrollBar
  71.     Left = 169
  72.     Top = 9
  73.     Width = 16
  74.     Height = 157
  75.     Kind = sbVertical
  76.     TabOrder = 2
  77.     OnChange = VScrollbChange
  78.   end
  79.   object HUnits: TEdit
  80.     Left = 275
  81.     Top = 38
  82.     Width = 48
  83.     Height = 21
  84.     ReadOnly = True
  85.     TabOrder = 3
  86.     Text = '0'
  87.   end
  88.   object HPage: TEdit
  89.     Left = 275
  90.     Top = 74
  91.     Width = 48
  92.     Height = 21
  93.     ReadOnly = True
  94.     TabOrder = 4
  95.     Text = '0'
  96.   end
  97.   object HMax: TEdit
  98.     Left = 276
  99.     Top = 113
  100.     Width = 48
  101.     Height = 21
  102.     ReadOnly = True
  103.     TabOrder = 5
  104.     Text = '0'
  105.   end
  106.   object VUnits: TEdit
  107.     Left = 363
  108.     Top = 38
  109.     Width = 48
  110.     Height = 21
  111.     ReadOnly = True
  112.     TabOrder = 6
  113.     Text = '0'
  114.   end
  115.   object VPage: TEdit
  116.     Left = 363
  117.     Top = 74
  118.     Width = 48
  119.     Height = 21
  120.     ReadOnly = True
  121.     TabOrder = 7
  122.     Text = '0'
  123.   end
  124.   object VMax: TEdit
  125.     Left = 363
  126.     Top = 113
  127.     Width = 48
  128.     Height = 21
  129.     ReadOnly = True
  130.     TabOrder = 8
  131.     Text = '0'
  132.   end
  133.   object HUnitsUpDown: TUpDown
  134.     Left = 323
  135.     Top = 38
  136.     Width = 15
  137.     Height = 21
  138.     Associate = HUnits
  139.     Min = 1
  140.     Max = 32767
  141.     Position = 1
  142.     TabOrder = 9
  143.     Wrap = False
  144.     OnClick = UpDownClick
  145.   end
  146.   object HPageUpDown: TUpDown
  147.     Left = 323
  148.     Top = 74
  149.     Width = 15
  150.     Height = 21
  151.     Associate = HPage
  152.     Min = 0
  153.     Max = 32767
  154.     Position = 0
  155.     TabOrder = 10
  156.     Wrap = False
  157.     OnClick = UpDownClick
  158.   end
  159.   object HMaxUpDown: TUpDown
  160.     Left = 324
  161.     Top = 113
  162.     Width = 15
  163.     Height = 21
  164.     Associate = HMax
  165.     Min = 0
  166.     Max = 32767
  167.     Position = 0
  168.     TabOrder = 11
  169.     Wrap = False
  170.     OnClick = UpDownClick
  171.   end
  172.   object VUnitsUpDown: TUpDown
  173.     Left = 411
  174.     Top = 38
  175.     Width = 15
  176.     Height = 21
  177.     Associate = VUnits
  178.     Min = 1
  179.     Max = 32767
  180.     Position = 1
  181.     TabOrder = 12
  182.     Wrap = False
  183.     OnClick = UpDownClick
  184.   end
  185.   object VMaxUpDown: TUpDown
  186.     Left = 411
  187.     Top = 113
  188.     Width = 15
  189.     Height = 21
  190.     Associate = VMax
  191.     Min = 0
  192.     Max = 32767
  193.     Position = 0
  194.     TabOrder = 13
  195.     Wrap = False
  196.     OnClick = UpDownClick
  197.   end
  198.   object VPageUpDown: TUpDown
  199.     Left = 411
  200.     Top = 74
  201.     Width = 15
  202.     Height = 21
  203.     Associate = VPage
  204.     Min = 0
  205.     Max = 32767
  206.     Position = 0
  207.     TabOrder = 14
  208.     Wrap = False
  209.     OnClick = UpDownClick
  210.   end
  211.   object DefaultBtn: TButton
  212.     Left = 348
  213.     Top = 157
  214.     Width = 75
  215.     Height = 25
  216.     Caption = '&Defaults'
  217.     ParentShowHint = False
  218.     ShowHint = False
  219.     TabOrder = 15
  220.     OnClick = DefaultBtnClick
  221.   end
  222.   object ApplyBtn: TButton
  223.     Left = 265
  224.     Top = 157
  225.     Width = 75
  226.     Height = 25
  227.     Caption = '&Apply'
  228.     Enabled = False
  229.     TabOrder = 16
  230.     OnClick = ApplyBtnClick
  231.   end
  232.   object MainMenu1: TMainMenu
  233.     Left = 196
  234.     Top = 159
  235.     object File1: TMenuItem
  236.       Caption = '&File'
  237.       object Open1: TMenuItem
  238.         Caption = '&Open...'
  239.         OnClick = Open1Click
  240.       end
  241.       object N1: TMenuItem
  242.         Caption = '-'
  243.       end
  244.       object Exit1: TMenuItem
  245.         Caption = 'E&xit'
  246.         OnClick = Exit1Click
  247.       end
  248.     end
  249.     object View1: TMenuItem
  250.       Caption = '&Scroll'
  251.       OnClick = View1Click
  252.       object VScrollMenu: TMenuItem
  253.         Caption = '&Vertical'
  254.         OnClick = VScrollMenuClick
  255.       end
  256.       object HScrollMenu: TMenuItem
  257.         Caption = '&Horizontal'
  258.         OnClick = HScrollMenuClick
  259.       end
  260.     end
  261.     object Help1: TMenuItem
  262.       Caption = '&Help'
  263.       object About1: TMenuItem
  264.         Caption = '&About...'
  265.         OnClick = About1Click
  266.       end
  267.     end
  268.   end
  269.   object OpenDialog: TOpenDialog
  270.     DefaultExt = '.bmp'
  271.     Filter = 
  272.       'Images (*.bmp;*.ico)|*.bmp;*.ico|Bitmaps (*.bmp)|*.bmp|Icons (*.' +
  273.       'ico)|*.ico'
  274.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  275.     Left = 230
  276.     Top = 158
  277.   end
  278.   object ImgPanel: TPanel
  279.     Left = 8
  280.     Top = 8
  281.     Width = 160
  282.     Height = 160
  283.     BevelOuter = bvNone
  284.     BorderStyle = bsSingle
  285.     TabOrder = 0
  286.     object Image: TImage
  287.       Left = 0
  288.       Top = 0
  289.       Width = 600
  290.       Height = 470
  291.       AutoSize = True
  292.       Picture.Data = {<image000.bmp>}
  293.     end
  294.   end
  295. end
  296.