VERSION 5.00 Begin VB.Form frmAcerca BorderStyle = 3 'Fixed Dialog Caption = "Acerca de Visual SINTAC" ClientHeight = 3180 ClientLeft = 45 ClientTop = 330 ClientWidth = 5520 Icon = "Acerca.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 3180 ScaleWidth = 5520 ShowInTaskbar = 0 'False StartUpPosition = 1 'CenterOwner Begin VB.CommandButton cmdAceptar Caption = "&Aceptar" Default = -1 'True Height = 375 Left = 4320 TabIndex = 0 Top = 2760 Width = 1095 End Begin VB.Frame Frame1 Height = 1215 Left = 1680 TabIndex = 2 Top = 1480 Width = 3735 Begin VB.Label lblVersion Caption = "Versión 0" BeginProperty Font Name = "Arial" Size = 8.25 Charset = 0 Weight = 700 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 255 Left = 120 TabIndex = 5 Top = 120 Width = 1935 End Begin VB.Label lblCopyright Caption = "Copyright" BeginProperty Font Name = "Arial" Size = 8.25 Charset = 0 Weight = 400 Underline = 0 'False Italic = 0 'False Strikethrough = 0 'False EndProperty Height = 255 Left = 120 TabIndex = 4 Top = 360 Width = 2055 End Begin VB.Label lblWeb Caption = "http://pagina.de/jsj" BeginProperty Font Name = "Arial" Size = 8.25 Charset = 0 Weight = 400 Underline = -1 'True Italic = 0 'False Strikethrough = 0 'False EndProperty ForeColor = &H00800000& Height = 255 Index = 0 Left = 120 MouseIcon = "Acerca.frx":0E42 MousePointer = 99 'Custom TabIndex = 3 Top = 840 Width = 2895 End End Begin VB.Image Image1 Appearance = 0 'Flat BorderStyle = 1 'Fixed Single Height = 1455 Left = 0 Picture = "Acerca.frx":114C Stretch = -1 'True Top = 0 Width = 3495 End Begin VB.Label Label1 Caption = "1999 Año de la Aventura" BeginProperty Font Name = "Arial" Size = 6.75 Charset = 0 Weight = 400 Underline = 0 'False Italic = -1 'True Strikethrough = 0 'False EndProperty ForeColor = &H000000C0& Height = 255 Left = 120 TabIndex = 1 Top = 2760 Width = 1815 End Begin VB.Image Image3 Height = 1020 Left = 3600 Picture = "Acerca.frx":27C2 Top = 120 Width = 1830 End Begin VB.Image Image2 Appearance = 0 'Flat BorderStyle = 1 'Fixed Single Height = 1080 Left = 200 Picture = "Acerca.frx":3487 Stretch = -1 'True Top = 1560 Width = 1320 End End Attribute VB_Name = "frmAcerca" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Private Sub cmdAceptar_Click() Unload Me End Sub Private Sub Form_Load() lblVersion.Caption = App.Major & "." & App.Minor & " rev." & App.Revision lblCopyright.Caption = App.LegalCopyright End Sub Private Sub lblWeb_Click(index As Integer) IrAURL lblWeb(index).Caption End Sub