Public Class splash Inherits System.Windows.Forms.Form #Region " Windows Form Designer generated code " Public Sub New() MyBase.New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() call End Sub 'Form overrides dispose to clean up the component list. Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean) If disposing Then If Not (components Is Nothing) Then components.Dispose() End If End If MyBase.Dispose(disposing) End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. Friend WithEvents lbFecha As System.Windows.Forms.Label Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents lbVersion As System.Windows.Forms.Label Friend WithEvents PictureBox1 As System.Windows.Forms.PictureBox Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents Label3 As System.Windows.Forms.Label Private Sub InitializeComponent() Me.lbFecha = New System.Windows.Forms.Label() Me.Label1 = New System.Windows.Forms.Label() Me.lbVersion = New System.Windows.Forms.Label() Me.PictureBox1 = New System.Windows.Forms.PictureBox() Me.Label2 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'lbFecha ' Me.lbFecha.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lbFecha.Location = New System.Drawing.Point(144, 248) Me.lbFecha.Name = "lbFecha" Me.lbFecha.Size = New System.Drawing.Size(240, 23) Me.lbFecha.TabIndex = 2 Me.lbFecha.TextAlign = System.Drawing.ContentAlignment.MiddleRight ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label1.ForeColor = System.Drawing.Color.MidnightBlue Me.Label1.Location = New System.Drawing.Point(64, 168) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(259, 16) Me.Label1.TabIndex = 3 Me.Label1.Text = "Sistema de Prevenciòn de Lavado de Dinero" ' 'lbVersion ' Me.lbVersion.AutoSize = True Me.lbVersion.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.lbVersion.ForeColor = System.Drawing.Color.Navy Me.lbVersion.Location = New System.Drawing.Point(16, 248) Me.lbVersion.Name = "lbVersion" Me.lbVersion.Size = New System.Drawing.Size(93, 16) Me.lbVersion.TabIndex = 5 Me.lbVersion.Text = "Version 2.5.0" ' 'PictureBox1 ' Me.PictureBox1.BackColor = System.Drawing.Color.White Me.PictureBox1.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.PictureBox1.Image = Global.CLIENTE.My.Resources.Resources.logo_Empresa Me.PictureBox1.Location = New System.Drawing.Point(45, 12) Me.PictureBox1.Name = "PictureBox1" Me.PictureBox1.Size = New System.Drawing.Size(289, 112) Me.PictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage Me.PictureBox1.TabIndex = 0 Me.PictureBox1.TabStop = False ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.BackColor = System.Drawing.Color.White Me.Label2.Font = New System.Drawing.Font("Verdana", 12.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label2.ForeColor = System.Drawing.Color.Navy Me.Label2.Location = New System.Drawing.Point(16, 200) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(73, 18) Me.Label2.TabIndex = 4 Me.Label2.Text = "MINDS " ' 'Label3 ' Me.Label3.BackColor = System.Drawing.SystemColors.Window Me.Label3.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label3.ForeColor = System.Drawing.Color.Navy Me.Label3.Location = New System.Drawing.Point(16, 224) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(328, 16) Me.Label3.TabIndex = 7 Me.Label3.Text = "Monitoring Information Network and Detection System" Me.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft ' 'splash ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 14) Me.BackColor = System.Drawing.Color.White Me.ClientSize = New System.Drawing.Size(386, 274) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.lbVersion) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.lbFecha) Me.Controls.Add(Me.PictureBox1) Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow Me.Name = "splash" Me.ShowInTaskbar = False Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen Me.TopMost = True CType(Me.PictureBox1, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub #End Region Private Sub splash_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load lbFecha.Text = Format(Now.Date, "D") lbVersion.Text = dmModulo._Version End Sub End Class