home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / INTERNET / VARIE / TEKTEL / SRC.ZIP / DLGABOUT.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1994-02-16  |  4.2 KB  |  141 lines

  1. VERSION 2.00
  2. Begin Form dlgAbout 
  3.    BorderStyle     =   1  'Fixed Single
  4.    Caption         =   "About TekTel"
  5.    ClientHeight    =   2280
  6.    ClientLeft      =   1620
  7.    ClientTop       =   1485
  8.    ClientWidth     =   2880
  9.    FontBold        =   -1  'True
  10.    FontItalic      =   0   'False
  11.    FontName        =   "Script"
  12.    FontSize        =   9.75
  13.    FontStrikethru  =   0   'False
  14.    FontUnderline   =   0   'False
  15.    Height          =   2685
  16.    Left            =   1560
  17.    LinkTopic       =   "Form1"
  18.    MaxButton       =   0   'False
  19.    MinButton       =   0   'False
  20.    ScaleHeight     =   2280
  21.    ScaleWidth      =   2880
  22.    Top             =   1140
  23.    Width           =   3000
  24.    Begin SSPanel Panel3D1 
  25.       BackColor       =   &H00C0C0C0&
  26.       BevelInner      =   1  'Inset
  27.       Font3D          =   0  'None
  28.       ForeColor       =   &H00FFFFFF&
  29.       Height          =   2295
  30.       Left            =   0
  31.       TabIndex        =   0
  32.       Top             =   0
  33.       Width           =   2895
  34.       Begin Image Image1 
  35.          Height          =   480
  36.          Left            =   240
  37.          Picture         =   DLGABOUT.FRX:0000
  38.          Top             =   240
  39.          Width           =   480
  40.       End
  41.       Begin Label Label6 
  42.          Alignment       =   2  'Center
  43.          BackColor       =   &H00C0C0C0&
  44.          Caption         =   "Ver. 1b"
  45.          ForeColor       =   &H00000000&
  46.          Height          =   255
  47.          Left            =   840
  48.          TabIndex        =   6
  49.          Top             =   1320
  50.          Width           =   1215
  51.       End
  52.       Begin Label Label5 
  53.          Alignment       =   2  'Center
  54.          BackColor       =   &H00C0C0C0&
  55.          Caption         =   "m.salmon @ uea.ac.uk"
  56.          FontBold        =   -1  'True
  57.          FontItalic      =   -1  'True
  58.          FontName        =   "MS Sans Serif"
  59.          FontSize        =   8.25
  60.          FontStrikethru  =   0   'False
  61.          FontUnderline   =   0   'False
  62.          Height          =   255
  63.          Left            =   120
  64.          TabIndex        =   5
  65.          Top             =   1920
  66.          Width           =   2655
  67.       End
  68.       Begin Label Label4 
  69.          Alignment       =   2  'Center
  70.          BackColor       =   &H00C0C0C0&
  71.          Caption         =   "Mike Salmon"
  72.          Height          =   255
  73.          Left            =   840
  74.          TabIndex        =   4
  75.          Top             =   1680
  76.          Width           =   1215
  77.       End
  78.       Begin Label Label3 
  79.          Alignment       =   2  'Center
  80.          BackColor       =   &H00C0C0C0&
  81.          Caption         =   "with Tektronix 4010 emulation"
  82.          Height          =   255
  83.          Left            =   120
  84.          TabIndex        =   3
  85.          Top             =   960
  86.          Width           =   2655
  87.       End
  88.       Begin Label Label2 
  89.          Alignment       =   2  'Center
  90.          BackColor       =   &H00C0C0C0&
  91.          Caption         =   "Telnet for WinSock "
  92.          Height          =   255
  93.          Left            =   960
  94.          TabIndex        =   2
  95.          Top             =   720
  96.          Width           =   1695
  97.       End
  98.       Begin Label Label1 
  99.          Alignment       =   2  'Center
  100.          AutoSize        =   -1  'True
  101.          BackColor       =   &H00C0C0C0&
  102.          Caption         =   "TekTel"
  103.          FontBold        =   -1  'True
  104.          FontItalic      =   0   'False
  105.          FontName        =   "MS Sans Serif"
  106.          FontSize        =   24
  107.          FontStrikethru  =   0   'False
  108.          FontUnderline   =   0   'False
  109.          Height          =   555
  110.          Left            =   960
  111.          TabIndex        =   1
  112.          Top             =   120
  113.          Width           =   1695
  114.       End
  115.    End
  116. Option Explicit
  117. Sub Image1_Click ()
  118.   Unload dlgAbout
  119. End Sub
  120. Sub Label1_Click ()
  121. Unload dlgAbout
  122. End Sub
  123. Sub Label2_Click ()
  124. Unload dlgAbout
  125. End Sub
  126. Sub Label3_Click ()
  127.   Unload dlgAbout
  128. End Sub
  129. Sub Label4_Click ()
  130.   Unload dlgAbout
  131. End Sub
  132. Sub Label5_Click ()
  133.   Unload dlgAbout
  134. End Sub
  135. Sub Label6_Click ()
  136.   Unload dlgAbout
  137. End Sub
  138. Sub Panel3D1_Click ()
  139.   Unload dlgAbout
  140. End Sub
  141.