Hola, estoy asiendo un programa para introducir y buscar datos de los cientes los típico dirección teléfono nombre
y numero de tarjeta.pero al depurar el programa me da error,haber si alguien be el problema.
Private Sub Command1_Click()
Open "c:\datos.dat" For Input As 1
Do While Not EOF(1)
Input #1, nombrecogido
Input #1, direcogido
Input #1, telcogido
Input #1, cpcogido
If nombrecogido = Text5.Text Then 'aqui meda el error
Text1.Text = nombrecogido
Text2.Text = direcogido
Text3.Text = telcogido
Text4.Text = cpcogido
Exit Sub
End If
Loop
Close #1
End Sub
Private Sub Command2_Click()
Open "c:\datos.dat" For Append As 1
Write #1, Text1.Text
Write #1, Text2.Text
Write #1, Text3.Text
Write #1, Text4.Text
Close #1
End Sub
y numero de tarjeta.pero al depurar el programa me da error,haber si alguien be el problema.
Private Sub Command1_Click()
Open "c:\datos.dat" For Input As 1
Do While Not EOF(1)
Input #1, nombrecogido
Input #1, direcogido
Input #1, telcogido
Input #1, cpcogido
If nombrecogido = Text5.Text Then 'aqui meda el error
Text1.Text = nombrecogido
Text2.Text = direcogido
Text3.Text = telcogido
Text4.Text = cpcogido
Exit Sub
End If
Loop
Close #1
End Sub
Private Sub Command2_Click()
Open "c:\datos.dat" For Append As 1
Write #1, Text1.Text
Write #1, Text2.Text
Write #1, Text3.Text
Write #1, Text4.Text
Close #1
End Sub