home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / DM.DFM / DM.txt
Text File  |  1997-01-16  |  5KB  |  206 lines

  1. object DM1: TDM1
  2.   Left = 92
  3.   Top = 451
  4.   Height = 179
  5.   Width = 322
  6.   object tblMaster: TTable
  7.     Active = True
  8.     DatabaseName = 'BCDEMOS'
  9.     IndexName = 'SYMBOL'
  10.     TableName = 'MASTER.DBF'
  11.     Left = 24
  12.     Top = 12
  13.     object tblMasterSYMBOL: TStringField
  14.       Alignment = taCenter
  15.       DisplayLabel = 'Symbol'
  16.       DisplayWidth = 7
  17.       FieldName = 'SYMBOL'
  18.       Size = 7
  19.     end
  20.     object tblMasterCO_NAME: TStringField
  21.       DisplayLabel = 'Company'
  22.       DisplayWidth = 20
  23.       FieldName = 'CO_NAME'
  24.     end
  25.     object tblMasterEXCHANGE: TStringField
  26.       DisplayLabel = 'Exchange'
  27.       DisplayWidth = 8
  28.       FieldName = 'EXCHANGE'
  29.       Size = 8
  30.     end
  31.     object tblMasterIndustryLongName: TStringField
  32.       Alignment = taCenter
  33.       DisplayLabel = 'Industry'
  34.       DisplayWidth = 18
  35.       FieldName = 'IndustryLongName'
  36.       Lookup = True
  37.       LookupDataSet = tblIndustry
  38.       LookupKeyFields = 'IND_CODE'
  39.       LookupResultField = 'LONG_NAME'
  40.       KeyFields = 'INDUSTRY'
  41.       Size = 32
  42.     end
  43.     object tblMasterCUR_PRICE: TFloatField
  44.       DisplayLabel = 'Current Price'
  45.       DisplayWidth = 10
  46.       FieldName = 'CUR_PRICE'
  47.       DisplayFormat = '$ #,###.00'
  48.       EditFormat = '#,###.00'
  49.     end
  50.     object tblMasterYRL_HIGH: TFloatField
  51.       DisplayLabel = 'Yr. High'
  52.       DisplayWidth = 10
  53.       FieldName = 'YRL_HIGH'
  54.       DisplayFormat = '$ #,###.00'
  55.       EditFormat = '#,###.00'
  56.     end
  57.     object tblMasterYRL_LOW: TFloatField
  58.       DisplayLabel = 'Yr. Low'
  59.       DisplayWidth = 10
  60.       FieldName = 'YRL_LOW'
  61.       DisplayFormat = '$ #,###.00'
  62.       EditFormat = '#,###.00'
  63.     end
  64.     object tblMasterP_E_RATIO: TFloatField
  65.       Alignment = taCenter
  66.       DisplayLabel = 'P/E Ratio'
  67.       DisplayWidth = 10
  68.       FieldName = 'P_E_RATIO'
  69.     end
  70.     object tblMasterPROJ_GRTH: TFloatField
  71.       Alignment = taCenter
  72.       DisplayLabel = 'Proj. Growth'
  73.       DisplayWidth = 10
  74.       FieldName = 'PROJ_GRTH'
  75.       DisplayFormat = '###%'
  76.       EditFormat = '###'
  77.     end
  78.     object tblMasterINDUSTRY: TSmallintField
  79.       Alignment = taCenter
  80.       DisplayLabel = 'Industry'
  81.       DisplayWidth = 10
  82.       FieldName = 'INDUSTRY'
  83.       Visible = False
  84.     end
  85.     object tblMasterPRICE_CHG: TSmallintField
  86.       Alignment = taCenter
  87.       DisplayLabel = 'Price Change'
  88.       DisplayWidth = 10
  89.       FieldName = 'PRICE_CHG'
  90.       DisplayFormat = '###%'
  91.       EditFormat = '###'
  92.     end
  93.     object tblMasterRATING: TStringField
  94.       Alignment = taCenter
  95.       DisplayLabel = 'Rating'
  96.       DisplayWidth = 5
  97.       FieldName = 'RATING'
  98.       Size = 4
  99.     end
  100.     object tblMasterRANK: TFloatField
  101.       Alignment = taCenter
  102.       DisplayLabel = 'Rank'
  103.       DisplayWidth = 5
  104.       FieldName = 'RANK'
  105.     end
  106.     object tblMasterOUTLOOK: TSmallintField
  107.       Alignment = taCenter
  108.       DisplayLabel = 'Outlook'
  109.       DisplayWidth = 7
  110.       FieldName = 'OUTLOOK'
  111.     end
  112.     object tblMasterRCMNDATION: TStringField
  113.       Alignment = taCenter
  114.       DisplayLabel = 'Recc.'
  115.       DisplayWidth = 6
  116.       FieldName = 'RCMNDATION'
  117.       Size = 5
  118.     end
  119.     object tblMasterRISK: TStringField
  120.       Alignment = taCenter
  121.       DisplayLabel = 'Risk'
  122.       DisplayWidth = 6
  123.       FieldName = 'RISK'
  124.       Size = 4
  125.     end
  126.   end
  127.   object dsMaster: TDataSource
  128.     DataSet = tblMaster
  129.     Left = 76
  130.     Top = 12
  131.   end
  132.   object tblIndustry: TTable
  133.     Active = True
  134.     DatabaseName = 'BCDEMOS'
  135.     IndexName = 'IND_CODE'
  136.     MasterFields = 'INDUSTRY'
  137.     TableName = 'INDUSTRY.DBF'
  138.     Left = 156
  139.     Top = 12
  140.     object tblIndustryIND_CODE: TSmallintField
  141.       FieldName = 'IND_CODE'
  142.       Visible = False
  143.     end
  144.     object tblIndustryIND_NAME: TStringField
  145.       FieldName = 'IND_NAME'
  146.       Size = 5
  147.     end
  148.     object tblIndustryLONG_NAME: TStringField
  149.       FieldName = 'LONG_NAME'
  150.     end
  151.   end
  152.   object dsIndustry: TDataSource
  153.     DataSet = tblIndustry
  154.     Left = 208
  155.     Top = 12
  156.   end
  157.   object tblHoldings: TTable
  158.     Active = True
  159.     AfterOpen = tblHoldingsAfterOpen
  160.     AfterPost = tblHoldingsAfterPost
  161.     OnCalcFields = tblHoldingsCalcFields
  162.     DatabaseName = 'BCDEMOS'
  163.     IndexName = 'SYMBOL'
  164.     MasterFields = 'SYMBOL'
  165.     MasterSource = dsMaster
  166.     TableName = 'HOLDINGS.DBF'
  167.     Left = 36
  168.     Top = 76
  169.     object tblHoldingsACCT_NBR: TFloatField
  170.       DisplayLabel = 'Account No.'
  171.       FieldName = 'ACCT_NBR'
  172.     end
  173.     object tblHoldingsSHARES: TFloatField
  174.       DisplayLabel = 'Shares'
  175.       FieldName = 'SHARES'
  176.       DisplayFormat = '###,###,###'
  177.       EditFormat = '###,###,###'
  178.     end
  179.     object tblHoldingsPUR_PRICE: TFloatField
  180.       DisplayLabel = 'Purchase Price'
  181.       FieldName = 'PUR_PRICE'
  182.       DisplayFormat = '$ #,###.00'
  183.       EditFormat = '#,###.00'
  184.     end
  185.     object tblHoldingsPUR_DATE: TDateField
  186.       DisplayLabel = 'Purchase Date'
  187.       FieldName = 'PUR_DATE'
  188.       DisplayFormat = 'mmm. dd, yyyy'
  189.     end
  190.     object tblHoldingsSYMBOL: TStringField
  191.       FieldName = 'SYMBOL'
  192.       Visible = False
  193.       Size = 7
  194.     end
  195.     object tblHoldingsPUR_COST: TCurrencyField
  196.       Calculated = True
  197.       FieldName = 'PUR_COST'
  198.     end
  199.   end
  200.   object dsHoldings: TDataSource
  201.     DataSet = tblHoldings
  202.     Left = 96
  203.     Top = 76
  204.   end
  205. end
  206.