VERSION 5.00 Begin VB.Form frmSplashScreen BackColor = &H00FFFFFF& BorderStyle = 0 'None Caption = "GeoDelft - RRD Edit 1.0" ClientHeight = 5175 ClientLeft = 0 ClientTop = 0 ClientWidth = 5835 ClipControls = 0 'False ControlBox = 0 'False Icon = "frmSplashScreen.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 5175 ScaleWidth = 5835 ShowInTaskbar = 0 'False StartUpPosition = 2 'CenterScreen Begin VB.PictureBox Picture4 AutoRedraw = -1 'True AutoSize = -1 'True BorderStyle = 0 'None Height = 1110 Left = 120 Picture = "frmSplashScreen.frx":08CA ScaleHeight = 1110 ScaleWidth = 1695 TabIndex = 5 Top = 2280 Width = 1695 End Begin VB.PictureBox Picture1 AutoSize = -1 'True BorderStyle = 0 'None Height = 1995 Left = 240 Picture = "frmSplashScreen.frx":1E5F ScaleHeight = 1995 ScaleWidth = 5520 TabIndex = 0 Top = 120 Width = 5520 End Begin VB.Label Label1 Alignment = 2 'Center BackStyle = 0 'Transparent Caption = "Klik op het scherm om door te gaan" BeginProperty Font Name = "MS Sans Serif" Size = 12 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H000000FF& Height = 360 Left = 120 TabIndex = 6 Top = 4740 Width = 5535 End Begin VB.Line Line3 X1 = 120 X2 = 5640 Y1 = 4680 Y2 = 4680 End Begin VB.Line Line2 X1 = 120 X2 = 5640 Y1 = 2160 Y2 = 2160 End Begin VB.Label Label4 BackColor = &H00FFFFFF& Caption = $"frmSplashScreen.frx":25C31 ForeColor = &H00000000& Height = 975 Left = 120 TabIndex = 4 Top = 3600 Width = 5535 End Begin VB.Label Label2 AutoSize = -1 'True BackColor = &H00FFFFFF& Caption = "Deltares Geo-engineering" Height = 195 Index = 2 Left = 3600 TabIndex = 3 Top = 2400 Width = 1800 End Begin VB.Line Line1 X1 = 120 X2 = 5640 Y1 = 3480 Y2 = 3480 End Begin VB.Shape Shape1 Height = 5175 Left = 0 Top = 0 Width = 5835 End Begin VB.Label Label2 AutoSize = -1 'True BackColor = &H00FFFFFF& Caption = "Compiled: 26 oktober 2012" Height = 195 Index = 1 Left = 3600 TabIndex = 2 Top = 2760 Width = 1905 End Begin VB.Label Label2 AutoSize = -1 'True BackColor = &H00FFFFFF& Caption = "Versie 2.2.0" Height = 195 Index = 0 Left = 3600 TabIndex = 1 Top = 3120 Width = 840 End End Attribute VB_Name = "frmSplashScreen" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Private Sub Label1_Click() 'Laat het volgende scherm frmGraphicView.Show Unload frmSplashScreen End Sub Private Sub Form_Click() 'Laat het volgende scherm frmGraphicView.Show Unload frmSplashScreen End Sub Private Sub Form_Load() 'Declareer lokalevariabelen Dim i As Integer 'Controleer of het een ilegale versie is On Error GoTo errorHandler 'Controleer of het een legale versie is 'Open "N:\Units\Geo-engineering\GND\user afdeling GND\vst\Worddocumenten\Prive\vst.xqz" For Input As #1 'Close #1 i = MsgBox("Dit is projectsoftware." & Chr(13) & "Gebruik van de software en de verkregen gevens middels deze software gebeurt voor risico van de gebruiker. " & Chr(13) & "U heeft geen recht op ondersteuning bij het gebruik maken van deze software." & Chr(13) & "Gaat u hiermee akkoord?", vbYesNo, "Let op: Projectsoftware") If i = 7 Then 'Voorkom dat de errorHandler zonder reden wordt uitgevoerd End End If 'Voorkom dat de errorHandler zonder reden wordt uitgevoerd Exit Sub 'Trap errorHandler: 'Toon waarschuwing i = MsgBox("Dit is een illegale versie het programma wordt afgesloten", vbCritical, "Copyright fout!") 'Stop het programma End End Sub Private Sub Image1_Click() 'Laat het volgende scherm frmGraphicView.Show Unload frmSplashScreen End Sub Private Sub Label2_Click(Index As Integer) 'Laat het volgende scherm frmGraphicView.Show Unload frmSplashScreen End Sub Private Sub Picture1_Click() 'Laat het volgende scherm frmGraphicView.Show Unload frmSplashScreen End Sub Private Sub Picture3_Click() 'Laat het volgende scherm frmGraphicView.Show Unload frmSplashScreen End Sub Private Sub Picture4_Click() 'Laat het volgende scherm frmGraphicView.Show Unload frmSplashScreen End Sub