home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form SplashForm
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- ClientHeight = 3735
- ClientLeft = 1995
- ClientTop = 1710
- ClientWidth = 6825
- ControlBox = 0 'False
- Height = 4140
- Left = 1935
- LinkTopic = "Form1"
- ScaleHeight = 3735
- ScaleWidth = 6825
- Top = 1365
- Width = 6945
- Begin Timer Timer1
- Interval = 100
- Left = 180
- Top = 1890
- End
- Begin Label Label1
- BackStyle = 0 'Transparent
- Caption = "User Name: Joe Smith Company: XYZ Corp"
- Height = 435
- Index = 2
- Left = 1740
- TabIndex = 0
- Top = 1920
- Width = 1965
- WordWrap = -1 'True
- End
- Begin Label Label1
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "DWSplash"
- FontBold = -1 'True
- FontItalic = -1 'True
- FontName = "MS Sans Serif"
- FontSize = 12
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- Height = 300
- Index = 0
- Left = 1740
- TabIndex = 1
- Top = 930
- Width = 1470
- End
- Begin Label Label1
- BackStyle = 0 'Transparent
- Caption = "Version 1.0c, Serial Number 32AF-34GE, Copyright 1993 Desaware - all rights reserved."
- Height = 435
- Index = 1
- Left = 1740
- TabIndex = 2
- Top = 1350
- Width = 4035
- WordWrap = -1 'True
- End
- Option Explicit
- Sub Timer1_Timer ()
- Dim res%
- Timer1.Enabled = False
- 'check for version conflicts
- FileToCheck$ = "main.exe"
- Load VerVrfy2
- If ConflictFilesFound% Then
- 'show list of conflicts
- VerVrfy2.Show 1
- 'end the program
- Unload Me
- Exit Sub
- Else
- Unload VerVrfy2
- End If
- 'all files are correct, start the main application
- res% = Shell("main.exe /verified", 1)
- Unload Me
- End Sub
-