home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 1_2002.ISO / Data / Zips / CODE_UPLOAD3889392000.psc / frmAbout.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1999-12-28  |  4.4 KB  |  144 lines

  1. VERSION 5.00
  2. Begin VB.Form frmAbout 
  3.    BorderStyle     =   4  'Festes Werkzeugfenster
  4.    Caption         =   "About Webserver"
  5.    ClientHeight    =   1575
  6.    ClientLeft      =   45
  7.    ClientTop       =   285
  8.    ClientWidth     =   2895
  9.    Icon            =   "frmAbout.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   1575
  14.    ScaleWidth      =   2895
  15.    ShowInTaskbar   =   0   'False
  16.    StartUpPosition =   3  'Windows-Standard
  17.    Begin VB.CommandButton Command1 
  18.       Caption         =   "OK"
  19.       Height          =   375
  20.       Left            =   788
  21.       TabIndex        =   1
  22.       Top             =   1080
  23.       Width           =   1335
  24.    End
  25.    Begin VB.Image Image1 
  26.       Height          =   480
  27.       Left            =   120
  28.       Picture         =   "frmAbout.frx":058A
  29.       Top             =   240
  30.       Width           =   480
  31.    End
  32.    Begin VB.Label pat 
  33.       Caption         =   "nymainst@nais.com"
  34.       BeginProperty Font 
  35.          Name            =   "MS Sans Serif"
  36.          Size            =   8.25
  37.          Charset         =   0
  38.          Weight          =   700
  39.          Underline       =   0   'False
  40.          Italic          =   0   'False
  41.          Strikethrough   =   0   'False
  42.       EndProperty
  43.       ForeColor       =   &H8000000D&
  44.       Height          =   255
  45.       Left            =   1080
  46.       TabIndex        =   4
  47.       Top             =   720
  48.       Width           =   1695
  49.    End
  50.    Begin VB.Label Label3 
  51.       Caption         =   "and"
  52.       BeginProperty Font 
  53.          Name            =   "MS Sans Serif"
  54.          Size            =   8.25
  55.          Charset         =   0
  56.          Weight          =   700
  57.          Underline       =   0   'False
  58.          Italic          =   0   'False
  59.          Strikethrough   =   0   'False
  60.       EndProperty
  61.       Height          =   255
  62.       Left            =   600
  63.       TabIndex        =   5
  64.       Top             =   720
  65.       Width           =   375
  66.    End
  67.    Begin VB.Label Label2 
  68.       Alignment       =   2  'Zentriert
  69.       Caption         =   "by"
  70.       BeginProperty Font 
  71.          Name            =   "MS Sans Serif"
  72.          Size            =   8.25
  73.          Charset         =   0
  74.          Weight          =   700
  75.          Underline       =   0   'False
  76.          Italic          =   0   'False
  77.          Strikethrough   =   0   'False
  78.       EndProperty
  79.       Height          =   255
  80.       Left            =   960
  81.       TabIndex        =   3
  82.       Top             =   480
  83.       Width           =   255
  84.    End
  85.    Begin VB.Label Label1 
  86.       Alignment       =   2  'Zentriert
  87.       Caption         =   "Webserver"
  88.       BeginProperty Font 
  89.          Name            =   "MS Sans Serif"
  90.          Size            =   18
  91.          Charset         =   0
  92.          Weight          =   700
  93.          Underline       =   0   'False
  94.          Italic          =   0   'False
  95.          Strikethrough   =   0   'False
  96.       EndProperty
  97.       Height          =   375
  98.       Left            =   600
  99.       TabIndex        =   2
  100.       Top             =   0
  101.       Width           =   1935
  102.    End
  103.    Begin VB.Label Joox 
  104.       Alignment       =   2  'Zentriert
  105.       Caption         =   "joox@gmx.de"
  106.       BeginProperty Font 
  107.          Name            =   "MS Sans Serif"
  108.          Size            =   8.25
  109.          Charset         =   0
  110.          Weight          =   700
  111.          Underline       =   0   'False
  112.          Italic          =   0   'False
  113.          Strikethrough   =   0   'False
  114.       EndProperty
  115.       ForeColor       =   &H8000000D&
  116.       Height          =   255
  117.       Left            =   1320
  118.       TabIndex        =   0
  119.       Top             =   480
  120.       Width           =   1215
  121.    End
  122. Attribute VB_Name = "frmAbout"
  123. Attribute VB_GlobalNameSpace = False
  124. Attribute VB_Creatable = False
  125. Attribute VB_PredeclaredId = True
  126. Attribute VB_Exposed = False
  127. Private Sub Command1_Click()
  128. frmMain.Enabled = True
  129. AppActivate frmMain.Caption
  130. Unload Me
  131. End Sub
  132. Private Sub Form_Load()
  133. Left = Screen.Width \ 2 - Width \ 2
  134. Top = Screen.Height \ 2 - Height \ 2
  135. SetWindowPos Me.hwnd, -1, 0, 0, 0, 0, 3
  136. TakeOutMenu Me, SC_CLOSE
  137. End Sub
  138. Private Sub Joox_Click()
  139. Call ShellExecute(Me.hwnd, "Open", "mailto:joox@gmx.de", "", "", 1)
  140. End Sub
  141. Private Sub pat_Click()
  142. Call ShellExecute(Me.hwnd, "Open", "mailto:nymainst@nais.com", "", "", 1)
  143. End Sub
  144.