home *** CD-ROM | disk | FTP | other *** search
/ Jumbo 2,500 Game Pack / DDVDAV937D1.iso / sharewarefin / ABSOSPDS.ZIP / 32spad11.exe / ASPADES.EXE / 0 / RCDATA / TDLGSCORES / TDLGSCORES.txt
Text File  |  1998-04-08  |  1KB  |  54 lines

  1. object dlgScores: TdlgScores
  2.   Left = 755
  3.   Top = 121
  4.   BorderStyle = bsDialog
  5.   Caption = 'Score Card'
  6.   ClientHeight = 195
  7.   ClientWidth = 196
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   Position = poDefaultPosOnly
  13.   OnClose = FormClose
  14.   OnShow = FormShow
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object OKBtn: TButton
  18.     Left = 61
  19.     Top = 160
  20.     Width = 75
  21.     Height = 25
  22.     Caption = 'Continue'
  23.     Default = True
  24.     ModalResult = 1
  25.     TabOrder = 0
  26.     OnClick = OKBtnClick
  27.   end
  28.   object lvwScores: TListView
  29.     Left = 0
  30.     Top = 0
  31.     Width = 196
  32.     Height = 150
  33.     Align = alTop
  34.     ColumnClick = False
  35.     Columns = <
  36.       item
  37.         Caption = 'Player'
  38.         Width = 130
  39.       end
  40.       item
  41.         Alignment = taRightJustify
  42.         Caption = 'Score'
  43.         Width = 60
  44.       end>
  45.     ReadOnly = True
  46.     Font.Color = clBlack
  47.     Font.Height = -11
  48.     Font.Name = 'MS Sans Serif'
  49.     Font.Style = [fsBold]
  50.     TabOrder = 1
  51.     ViewStyle = vsReport
  52.   end
  53. end
  54.