home *** CD-ROM | disk | FTP | other *** search
/ CICA 1995 May / cica_0595_4.zip / cica_0595_4 / UTIL / WSPRTERM / WELCOME.FRM < prev    next >
Text File  |  1994-07-10  |  2KB  |  88 lines

  1. VERSION 2.00
  2. Begin Form FWelcome 
  3.    BorderStyle     =   3  'Fixed Double
  4.    Caption         =   "WSPRTERM"
  5.    ClientHeight    =   5205
  6.    ClientLeft      =   2835
  7.    ClientTop       =   1455
  8.    ClientWidth     =   3630
  9.    ClipControls    =   0   'False
  10.    ControlBox      =   0   'False
  11.    FontBold        =   0   'False
  12.    FontItalic      =   0   'False
  13.    FontName        =   "MS Sans Serif"
  14.    FontSize        =   8.25
  15.    FontStrikethru  =   0   'False
  16.    FontUnderline   =   0   'False
  17.    Height          =   5640
  18.    Left            =   2760
  19.    LinkTopic       =   "Form1"
  20.    MaxButton       =   0   'False
  21.    MinButton       =   0   'False
  22.    Picture         =   WELCOME.FRX:0000
  23.    ScaleHeight     =   5205
  24.    ScaleWidth      =   3630
  25.    Top             =   1095
  26.    Width           =   3780
  27.    Begin Timer TWelcome 
  28.       Interval        =   3000
  29.       Left            =   2610
  30.       Top             =   4230
  31.    End
  32.    Begin Label Datapoint 
  33.       BackStyle       =   0  'Transparent
  34.       Caption         =   "Whisper Computer Solutions of San Antonio"
  35.       FontBold        =   0   'False
  36.       FontItalic      =   0   'False
  37.       FontName        =   "MS Sans Serif"
  38.       FontSize        =   8.25
  39.       FontStrikethru  =   0   'False
  40.       FontUnderline   =   0   'False
  41.       ForeColor       =   &H00000000&
  42.       Height          =   240
  43.       Left            =   90
  44.       TabIndex        =   1
  45.       Top             =   4905
  46.       Width           =   3210
  47.    End
  48.    Begin Label Copyright 
  49.       BackStyle       =   0  'Transparent
  50.       Caption         =   "Copyright 1994"
  51.       FontBold        =   0   'False
  52.       FontItalic      =   0   'False
  53.       FontName        =   "MS Sans Serif"
  54.       FontSize        =   8.25
  55.       FontStrikethru  =   0   'False
  56.       FontUnderline   =   0   'False
  57.       ForeColor       =   &H00000000&
  58.       Height          =   240
  59.       Left            =   90
  60.       TabIndex        =   0
  61.       Top             =   4680
  62.       Width           =   2175
  63.    End
  64. End
  65. Option Explicit
  66.  
  67. Sub Form_Load ()
  68.  
  69.     version = "1.1.C"
  70.     
  71.     FWelcome.Caption = "WSPRTERM " & version
  72.     FWelcome.Move (Screen.Width - FWelcome.Width) / 2, (Screen.Height - FWelcome.Height) / 2
  73.     FWelcome.Show
  74.     DoEvents
  75.  
  76.     Load FMain
  77.  
  78. End Sub
  79.  
  80. Sub TWelcome_Timer ()
  81.  
  82.     TWelcome.Enabled = False
  83.     FMain.Show
  84.     Unload FWelcome
  85.  
  86. End Sub
  87.  
  88.