home *** CD-ROM | disk | FTP | other *** search
/ Planet Source Code Jumbo …e CD Visual Basic 1 to 7 / 6_2008-2009.ISO / data / zips / IO_Control212260832008.psc / IO_Controller / IOSplash.frm < prev    next >
Text File  |  2008-08-02  |  4KB  |  109 lines

  1. VERSION 5.00
  2. Begin VB.Form frmSplash 
  3.    BackColor       =   &H00000000&
  4.    BorderStyle     =   3  'Fixed Dialog
  5.    ClientHeight    =   4245
  6.    ClientLeft      =   255
  7.    ClientTop       =   1410
  8.    ClientWidth     =   7380
  9.    ClipControls    =   0   'False
  10.    ControlBox      =   0   'False
  11.    Icon            =   "IOSplash.frx":0000
  12.    KeyPreview      =   -1  'True
  13.    LinkTopic       =   "Form2"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   4245
  17.    ScaleWidth      =   7380
  18.    ShowInTaskbar   =   0   'False
  19.    StartUpPosition =   2  'CenterScreen
  20.    Begin VB.Timer Timer1 
  21.       Interval        =   5000
  22.       Left            =   3045
  23.       Top             =   1890
  24.    End
  25.    Begin VB.Frame Frame1 
  26.       BackColor       =   &H00FF8080&
  27.       Height          =   4050
  28.       Left            =   150
  29.       TabIndex        =   0
  30.       Top             =   60
  31.       Width           =   7080
  32.       Begin VB.Image imgLogo 
  33.          Height          =   2385
  34.          Left            =   525
  35.          Picture         =   "IOSplash.frx":000C
  36.          Stretch         =   -1  'True
  37.          Top             =   945
  38.          Width           =   1815
  39.       End
  40.       Begin VB.Label lblProductName 
  41.          AutoSize        =   -1  'True
  42.          BackColor       =   &H00FF8080&
  43.          Caption         =   "IO Controller"
  44.          BeginProperty Font 
  45.             Name            =   "Arial"
  46.             Size            =   32.25
  47.             Charset         =   0
  48.             Weight          =   700
  49.             Underline       =   0   'False
  50.             Italic          =   0   'False
  51.             Strikethrough   =   0   'False
  52.          EndProperty
  53.          Height          =   765
  54.          Left            =   2730
  55.          TabIndex        =   3
  56.          Top             =   2100
  57.          Width           =   3930
  58.       End
  59.       Begin VB.Label lblLicenseTo 
  60.          Alignment       =   1  'Right Justify
  61.          BackColor       =   &H00FF8080&
  62.          Caption         =   "Made by Charles Montonya"
  63.          BeginProperty Font 
  64.             Name            =   "Arial"
  65.             Size            =   8.25
  66.             Charset         =   0
  67.             Weight          =   400
  68.             Underline       =   0   'False
  69.             Italic          =   0   'False
  70.             Strikethrough   =   0   'False
  71.          EndProperty
  72.          Height          =   255
  73.          Left            =   120
  74.          TabIndex        =   1
  75.          Top             =   525
  76.          Width           =   6855
  77.       End
  78.       Begin VB.Label lblCompanyProduct 
  79.          AutoSize        =   -1  'True
  80.          BackColor       =   &H00FF8080&
  81.          Caption         =   "Control Your House"
  82.          BeginProperty Font 
  83.             Name            =   "Arial"
  84.             Size            =   18
  85.             Charset         =   0
  86.             Weight          =   700
  87.             Underline       =   0   'False
  88.             Italic          =   0   'False
  89.             Strikethrough   =   0   'False
  90.          EndProperty
  91.          Height          =   435
  92.          Left            =   3045
  93.          TabIndex        =   2
  94.          Top             =   1470
  95.          Width           =   3405
  96.       End
  97.    End
  98. End
  99. Attribute VB_Name = "frmSplash"
  100. Attribute VB_GlobalNameSpace = False
  101. Attribute VB_Creatable = False
  102. Attribute VB_PredeclaredId = True
  103. Attribute VB_Exposed = False
  104. Private Sub Timer1_Timer()
  105. Form1.Visible = True
  106. Unload Me
  107. Timer1.Enabled = False
  108. End Sub
  109.