home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Demos / Midas / Setparam / clientfr.dfm / clientfr.txt
Text File  |  1999-08-11  |  4KB  |  178 lines

  1. object Form1: TForm1
  2.   Left = 565
  3.   Top = 358
  4.   AutoScroll = False
  5.   Caption = 'SetParam Demo'
  6.   ClientHeight = 343
  7.   ClientWidth = 470
  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 = True
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object Label1: TLabel
  19.     Left = 14
  20.     Top = 187
  21.     Width = 53
  22.     Height = 13
  23.     Caption = 'Description'
  24.   end
  25.   object Label2: TLabel
  26.     Left = 260
  27.     Top = 187
  28.     Width = 28
  29.     Height = 13
  30.     Caption = 'Photo'
  31.   end
  32.   object Label3: TLabel
  33.     Left = 16
  34.     Top = 4
  35.     Width = 62
  36.     Height = 13
  37.     Caption = 'Starting Date'
  38.   end
  39.   object Label4: TLabel
  40.     Left = 150
  41.     Top = 6
  42.     Width = 59
  43.     Height = 13
  44.     Caption = 'Ending Date'
  45.   end
  46.   object Bevel1: TBevel
  47.     Left = 10
  48.     Top = 51
  49.     Width = 451
  50.     Height = 2
  51.     Shape = bsTopLine
  52.   end
  53.   object DBGrid1: TDBGrid
  54.     Left = 12
  55.     Top = 61
  56.     Width = 445
  57.     Height = 120
  58.     DataSource = DataSource1
  59.     TabOrder = 3
  60.     TitleFont.Charset = DEFAULT_CHARSET
  61.     TitleFont.Color = clWindowText
  62.     TitleFont.Height = -11
  63.     TitleFont.Name = 'MS Sans Serif'
  64.     TitleFont.Style = []
  65.   end
  66.   object StartDate: TEdit
  67.     Left = 16
  68.     Top = 22
  69.     Width = 121
  70.     Height = 21
  71.     TabOrder = 0
  72.   end
  73.   object EndDate: TEdit
  74.     Left = 149
  75.     Top = 22
  76.     Width = 121
  77.     Height = 21
  78.     TabOrder = 1
  79.   end
  80.   object DBImage1: TDBImage
  81.     Left = 260
  82.     Top = 203
  83.     Width = 197
  84.     Height = 129
  85.     DataField = 'Event_Photo'
  86.     DataSource = DataSource1
  87.     TabOrder = 5
  88.   end
  89.   object DBMemo1: TDBMemo
  90.     Left = 14
  91.     Top = 203
  92.     Width = 235
  93.     Height = 129
  94.     DataField = 'Event_Description'
  95.     DataSource = DataSource1
  96.     TabOrder = 4
  97.   end
  98.   object ShowEvents: TButton
  99.     Left = 296
  100.     Top = 20
  101.     Width = 153
  102.     Height = 25
  103.     Caption = 'Show Events'
  104.     TabOrder = 2
  105.     OnClick = ShowEventsClick
  106.   end
  107.   object DataSource1: TDataSource
  108.     DataSet = Events
  109.     Left = 102
  110.     Top = 139
  111.   end
  112.   object Events: TClientDataSet
  113.     Aggregates = <>
  114.     Params = <
  115.       item
  116.         DataType = ftDateTime
  117.         Name = 'Start_Date'
  118.         ParamType = ptUnknown
  119.         Value = 29221d
  120.       end
  121.       item
  122.         DataType = ftDateTime
  123.         Name = 'End_Date'
  124.         ParamType = ptUnknown
  125.         Value = 36161d
  126.       end>
  127.     ProviderName = 'EventProvider'
  128.     RemoteServer = RemoteServer
  129.     Left = 66
  130.     Top = 139
  131.     object EventsEventNo: TIntegerField
  132.       DisplayWidth = 8
  133.       FieldName = 'EventNo'
  134.     end
  135.     object EventsEvent_Name: TStringField
  136.       DisplayLabel = 'Event'
  137.       DisplayWidth = 27
  138.       FieldName = 'Event_Name'
  139.       Size = 30
  140.     end
  141.     object EventsEvent_Date: TDateField
  142.       Alignment = taCenter
  143.       DisplayLabel = 'Date'
  144.       FieldName = 'Event_Date'
  145.     end
  146.     object EventsEvent_Time: TTimeField
  147.       DisplayLabel = 'Time'
  148.       FieldName = 'Event_Time'
  149.     end
  150.     object EventsEvent_Description: TMemoField
  151.       FieldName = 'Event_Description'
  152.       Visible = False
  153.       BlobType = ftMemo
  154.       Size = 100
  155.     end
  156.     object EventsTicket_price: TCurrencyField
  157.       DisplayLabel = 'Ticket Price'
  158.       FieldName = 'Ticket_price'
  159.     end
  160.     object EventsEvent_Photo: TGraphicField
  161.       FieldName = 'Event_Photo'
  162.       Visible = False
  163.       BlobType = ftGraphic
  164.     end
  165.     object EventsVenueNo: TIntegerField
  166.       FieldName = 'VenueNo'
  167.       Visible = False
  168.     end
  169.   end
  170.   object RemoteServer: TDCOMConnection
  171.     Connected = True
  172.     ServerGUID = '{518F9D64-F90A-11D0-9FFC-00A0248E4B9A}'
  173.     ServerName = 'Serv.SetParamDemo'
  174.     Left = 30
  175.     Top = 138
  176.   end
  177. end
  178.