From 23747aa284ad8487bd7ea3be882c8f194d2c65d2 Mon Sep 17 00:00:00 2001 From: Edson Armando <36713890+SistemaRayoXP@users.noreply.github.com> Date: Wed, 26 Dec 2018 22:12:38 -0600 Subject: [PATCH] Delete frmSplash.vb --- frmSplash.vb | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 frmSplash.vb diff --git a/frmSplash.vb b/frmSplash.vb deleted file mode 100644 index b0d3d17..0000000 --- a/frmSplash.vb +++ /dev/null @@ -1,29 +0,0 @@ -Option Strict Off -Option Explicit On -Friend Class frmSplash - Inherits System.Windows.Forms.Form - - Private Sub frmSplash_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click - Me.Close() - End Sub - - Private Sub frmSplash_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load - - 'TODO: This form can easily be set as the splash screen for the application by going to the "Application" tab - ' of the Project Designer ("Properties" under the "Project" menu). - - 'Set up the dialog text at runtime according to the application's assembly information. - - 'TODO: Customize the application's assembly information in the "Application" pane of the project - ' properties dialog (under the "Project" menu). - - 'Format the version information using the text set into the Version control at design time as the - ' formatting string. This allows for effective localization if desired. - ' Build and revision information could be included by using the following code and changing the - ' Version control's designtime text to "Version {0}.{1:00}.{2}.{3}" or something similar. See - ' String.Format() in Help for more information. - - Version.Text = My.Application.Info.Version.Major & "." & My.Application.Info.Version.Minor & "." & My.Application.Info.Version.Build - - End Sub -End Class \ No newline at end of file