home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue66 / Construc / ClientForm.dfm next >
Encoding:
Text File  |  2001-01-03  |  966 b   |  45 lines

  1. object Form1: TForm1
  2.   Left = 338
  3.   Top = 237
  4.   BorderStyle = bsDialog
  5.   Caption = 'CORBA Client Balance'
  6.   ClientHeight = 69
  7.   ClientWidth = 228
  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.   Position = poScreenCenter
  16.   OnCreate = FormCreate
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object LabelBalance: TLabel
  20.     Left = 8
  21.     Top = 12
  22.     Width = 210
  23.     Height = 13
  24.     Caption = 'No balance information available at this time!'
  25.   end
  26.   object ButtonDeposit: TButton
  27.     Left = 8
  28.     Top = 32
  29.     Width = 89
  30.     Height = 25
  31.     Caption = 'Deposit $1'
  32.     TabOrder = 0
  33.     OnClick = ButtonDepositClick
  34.   end
  35.   object ButtonWithdraw: TButton
  36.     Left = 129
  37.     Top = 32
  38.     Width = 89
  39.     Height = 25
  40.     Caption = 'Withdraw $42'
  41.     TabOrder = 1
  42.     OnClick = ButtonWithdrawClick
  43.   end
  44. end
  45.