home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Freeware / Comunicatii / poster / tptinstall.exe / %MAINDIR% / Toaster.exe / 0 / RCDATA / TFRMSELECTAUCTION / TFRMSELECTAUCTION.txt
Encoding:
Text File  |  2004-09-23  |  1.7 KB  |  87 lines

  1. object frmSelectAuction: TfrmSelectAuction
  2.   Left = 393
  3.   Top = 176
  4.   BorderStyle = bsDialog
  5.   Caption = 'Select Auction'
  6.   ClientHeight = 192
  7.   ClientWidth = 227
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object lblCopies: TLabel
  20.     Left = 35
  21.     Top = 133
  22.     Width = 87
  23.     Height = 13
  24.     Caption = 'Number of Copies:'
  25.   end
  26.   object btnOk: TButton
  27.     Left = 21
  28.     Top = 159
  29.     Width = 75
  30.     Height = 25
  31.     Caption = '&OK'
  32.     TabOrder = 2
  33.     OnClick = btnOkClick
  34.   end
  35.   object btnCancel: TButton
  36.     Left = 126
  37.     Top = 158
  38.     Width = 75
  39.     Height = 25
  40.     Caption = '&Cancel'
  41.     TabOrder = 3
  42.     OnClick = btnCancelClick
  43.   end
  44.   object lbAuctions: TDBLookupListBox
  45.     Left = 21
  46.     Top = 15
  47.     Width = 182
  48.     Height = 108
  49.     KeyField = 'AuctionID'
  50.     ListField = 'AuctionName'
  51.     ListSource = dsAuctions
  52.     TabOrder = 0
  53.     OnDblClick = lbAuctionsDblClick
  54.   end
  55.   object sedtCopies: TwwDBSpinEdit
  56.     Left = 132
  57.     Top = 130
  58.     Width = 53
  59.     Height = 21
  60.     Increment = 1
  61.     MaxValue = 1000
  62.     MinValue = 1
  63.     Value = 1
  64.     TabOrder = 1
  65.     UnboundDataType = wwDefault
  66.   end
  67.   object qryGetAuction: TAdsQuery
  68.     DatabaseName = 'frmPosterMain.AdsConnection1'
  69.     StoreActive = True
  70.     Version = '6.2 (ACE 6.20)'
  71.     ReadAllColumns = False
  72.     SQL.Strings = (
  73.       'Select AuctionName, AuctionId'
  74.       'From Auction'
  75.       'Where Active = true'
  76.       'Order By  AuctionId')
  77.     Left = 168
  78.     Top = 21
  79.     ParamData = <>
  80.   end
  81.   object dsAuctions: TDataSource
  82.     DataSet = qryGetAuction
  83.     Left = 109
  84.     Top = 19
  85.   end
  86. end
  87.