home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 May / W2KPRK.iso / apps / crystal / disk18 / Xvb385._ / Xvb385. (.txt)
Visual Basic Form  |  1999-08-23  |  740b  |  27 lines

  1. VERSION 5.00
  2. Begin VB.Form frmSplash 
  3.    BorderStyle     =   0  'None
  4.    ClientHeight    =   2025
  5.    ClientLeft      =   1935
  6.    ClientTop       =   2520
  7.    ClientWidth     =   4650
  8.    LinkTopic       =   "Form1"
  9.    MaxButton       =   0   'False
  10.    MinButton       =   0   'False
  11.    Picture         =   "Splash.frx":0000
  12.    ScaleHeight     =   2025
  13.    ScaleWidth      =   4650
  14.    ShowInTaskbar   =   0   'False
  15. Attribute VB_Name = "frmSplash"
  16. Attribute VB_GlobalNameSpace = False
  17. Attribute VB_Creatable = False
  18. Attribute VB_PredeclaredId = True
  19. Attribute VB_Exposed = False
  20. Option Explicit
  21. Private Sub Form_Load()
  22.   'make form background black
  23.   BackColor = RGB(0, 0, 0)
  24.   'center form
  25.   Center Me
  26. End Sub
  27.