home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 August / CHIP Turkiye Ağustos 2000 CD2.iso / prog / deprem / SMTP.u32 / 0 / RCDATA / TMAINFORM / TMAINFORM.txt
Encoding:
Text File  |  1998-08-11  |  1.6 KB  |  64 lines

  1. object MainForm: TMainForm
  2.   Left = 302
  3.   Top = 175
  4.   ActiveControl = BtnOK
  5.   BorderIcons = []
  6.   BorderStyle = bsDialog
  7.   Caption = 'About Simple Mail for Authorware'
  8.   ClientHeight = 183
  9.   ClientWidth = 362
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   Position = poScreenCenter
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object LblAbout: TLabel
  19.     Left = 8
  20.     Top = 8
  21.     Width = 350
  22.     Height = 137
  23.     Alignment = taCenter
  24.     AutoSize = False
  25.     Caption = 
  26.       'Simple Mail (SMTP) for Authorware'#13#10#13#10'This User Code Document (UC' +
  27.       'D) gives your Authorware application '#13#10'access to SMTP mail serve' +
  28.       'rs and mail posting capabilities'#13#10#13#10'Simple Mail for Authorware u' +
  29.       'ses the Simple Mail Transfer Protocol (SMTP)'#13#10#13#10'Copyright ∩┐╜ 1997' +
  30.       '-1998 by Stefan van As'#13#10#13#10'Comments, suggestions and/or bug repor' +
  31.       'ts? svanas@kagi.com'
  32.   end
  33.   object BtnOK: TButton
  34.     Left = 143
  35.     Top = 150
  36.     Width = 75
  37.     Height = 25
  38.     Caption = 'OK'
  39.     Default = True
  40.     TabOrder = 0
  41.     OnClick = BtnOKClick
  42.   end
  43.   object MailMessage: TmsMessage
  44.     ContentType = 'text/plain'
  45.     ReturnReceipt = False
  46.     Left = 8
  47.     Top = 146
  48.   end
  49.   object SMTP: TmsSMTP
  50.     DefaultPort = 25
  51.     OnError = SMTPError
  52.     MailMessage = MailMessage
  53.     OnMailSent = SMTPMailSent
  54.     Left = 40
  55.     Top = 146
  56.   end
  57.   object OpenDialog: TOpenDialog
  58.     DefaultExt = 'txt'
  59.     Filter = 'Text files (*.txt)|*.txt'
  60.     Left = 72
  61.     Top = 144
  62.   end
  63. end
  64.