home *** CD-ROM | disk | FTP | other *** search
/ ftp.notepager.com 2015 / 2015-02-04.ftp.notepager.com.tar / ftp.notepager.com / dev / snppserver.exe / 0 / RCDATA / TFRMMAIN / TFRMMAIN.txt
Text File  |  2013-10-17  |  3KB  |  141 lines

  1. object frmMain: TfrmMain
  2.   Left = 560
  3.   Top = 242
  4.   BorderIcons = [biSystemMenu]
  5.   BorderStyle = bsSingle
  6.   Caption = 'PageGate SNPP Server'
  7.   ClientHeight = 465
  8.   ClientWidth = 514
  9.   Color = clBtnFace
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   Menu = mnuMain
  16.   OldCreateOrder = False
  17.   Position = poDefaultPosOnly
  18.   OnActivate = FormActivate
  19.   OnClose = FormClose
  20.   OnCreate = FormCreate
  21.   OnDestroy = FormDestroy
  22.   PixelsPerInch = 96
  23.   TextHeight = 13
  24.   object btnStart: TButton
  25.     Left = 344
  26.     Top = 432
  27.     Width = 65
  28.     Height = 25
  29.     Caption = 'Start'
  30.     TabOrder = 0
  31.     OnClick = btnStartClick
  32.   end
  33.   object btnStop: TButton
  34.     Left = 440
  35.     Top = 432
  36.     Width = 65
  37.     Height = 25
  38.     Caption = 'Stop'
  39.     Enabled = False
  40.     TabOrder = 1
  41.     OnClick = btnStopClick
  42.   end
  43.   object edtGood: TLabeledEdit
  44.     Left = 40
  45.     Top = 432
  46.     Width = 41
  47.     Height = 21
  48.     EditLabel.Width = 29
  49.     EditLabel.Height = 13
  50.     EditLabel.Caption = ' Good'
  51.     EditLabel.Color = clBtnFace
  52.     EditLabel.Font.Charset = DEFAULT_CHARSET
  53.     EditLabel.Font.Color = clGreen
  54.     EditLabel.Font.Height = -11
  55.     EditLabel.Font.Name = 'MS Sans Serif'
  56.     EditLabel.Font.Style = []
  57.     EditLabel.ParentColor = False
  58.     EditLabel.ParentFont = False
  59.     LabelPosition = lpLeft
  60.     LabelSpacing = 6
  61.     TabOrder = 2
  62.     Text = '0'
  63.   end
  64.   object edtBad: TLabeledEdit
  65.     Left = 144
  66.     Top = 432
  67.     Width = 41
  68.     Height = 21
  69.     EditLabel.Width = 25
  70.     EditLabel.Height = 13
  71.     EditLabel.Caption = '  Bad'
  72.     EditLabel.Font.Charset = DEFAULT_CHARSET
  73.     EditLabel.Font.Color = clMaroon
  74.     EditLabel.Font.Height = -11
  75.     EditLabel.Font.Name = 'MS Sans Serif'
  76.     EditLabel.Font.Style = []
  77.     EditLabel.ParentFont = False
  78.     LabelPosition = lpLeft
  79.     LabelSpacing = 12
  80.     TabOrder = 3
  81.     Text = '0'
  82.   end
  83.   object mmoLog: TMemo
  84.     Left = 8
  85.     Top = 16
  86.     Width = 497
  87.     Height = 409
  88.     Font.Charset = ANSI_CHARSET
  89.     Font.Color = clWindowText
  90.     Font.Height = -9
  91.     Font.Name = 'Small Fonts'
  92.     Font.Style = []
  93.     ParentFont = False
  94.     ScrollBars = ssBoth
  95.     TabOrder = 4
  96.   end
  97.   object mnuMain: TMainMenu
  98.     Left = 8
  99.     object mnuFile: TMenuItem
  100.       Caption = '&File'
  101.       object mnuFileStart: TMenuItem
  102.         Caption = 'Star&t'
  103.         OnClick = mnuFileStartClick
  104.       end
  105.       object mnuFileStop: TMenuItem
  106.         Caption = 'Sto&p'
  107.         OnClick = mnuFileStopClick
  108.       end
  109.       object mnuFileExit: TMenuItem
  110.         Caption = 'E&xit'
  111.         OnClick = mnuFileExitClick
  112.       end
  113.     end
  114.     object mnuEdit: TMenuItem
  115.       Caption = '&Edit'
  116.       object mnuEditPreferences: TMenuItem
  117.         Caption = '&Preferences'
  118.         OnClick = mnuEditPreferencesClick
  119.       end
  120.     end
  121.     object mnuView: TMenuItem
  122.       Caption = '&View'
  123.       object mnuViewClearLog: TMenuItem
  124.         Caption = '&Clear Log'
  125.         OnClick = mnuViewClearLogClick
  126.       end
  127.       object mnuViewResetCounters: TMenuItem
  128.         Caption = '&Reset Counters'
  129.         OnClick = mnuViewResetCountersClick
  130.       end
  131.     end
  132.     object mnuHelp: TMenuItem
  133.       Caption = '&Help'
  134.       object mnuHelpAbout: TMenuItem
  135.         Caption = '&About'
  136.         OnClick = mnuHelpAboutClick
  137.       end
  138.     end
  139.   end
  140. end
  141.