VERSION 5.00 Begin VB.Form frmIrA BorderStyle = 3 'Fixed Dialog Caption = "Ir a línea" ClientHeight = 1035 ClientLeft = 45 ClientTop = 330 ClientWidth = 5910 Icon = "IrA.frx":0000 LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False ScaleHeight = 1035 ScaleWidth = 5910 ShowInTaskbar = 0 'False StartUpPosition = 1 'CenterOwner Begin VB.CommandButton cmdCancelar Cancel = -1 'True Caption = "&Cancelar" Height = 375 Left = 4560 TabIndex = 3 Top = 600 Width = 1215 End Begin VB.CommandButton cmdAceptar Caption = "&Aceptar" Default = -1 'True Height = 375 Left = 4560 TabIndex = 2 Top = 120 Width = 1215 End Begin VB.TextBox txtLin Height = 315 Left = 1200 TabIndex = 1 Top = 120 Width = 3135 End Begin VB.Label Label1 Caption = "Nº de línea" Height = 255 Left = 120 TabIndex = 0 Top = 120 Width = 1215 End End Attribute VB_Name = "frmIrA" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Option Explicit Public lLin As Long Private Sub cmdAceptar_Click() On Error Resume Next lLin = CLng(txtLin.Text) Me.Hide End Sub Private Sub cmdCancelar_Click() lLin = -1 Me.Hide End Sub Private Sub Form_Load() lLin = -1 End Sub