Advertisement
idsystems

VBBD_Ejercicio 04

Jan 17th, 2012
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Private Sub cmdAbrir_Click()
  2. Text1.Text = ""
  3. On Error GoTo NoSeleccionoArchivo:
  4. CommonDialog1.Filter = "Archivos de texto (TXT)" & Chr(32) & Chr(124) & "*.txt"
  5. CommonDialog1.ShowOpen
  6. Dim Linea As String
  7.  
  8. Open CommonDialog1.FileName For Input As #1
  9.  
  10.     While Not EOF(1)
  11.     Line Input #1, Linea
  12.     Text1.Text = Text1.Text & Linea & Chr(13) & Chr(10)
  13.     Wend
  14.  
  15. Close #1
  16.  
  17. Exit Sub
  18. NoSeleccionoArchivo:
  19.  
  20. End Sub
  21.  
  22.  
  23. Private Sub cmdGuardar_Click()
  24. On Error GoTo NoSeleccionoArchivo:
  25. CommonDialog1.Filter = "Archivos de texto (TXT)" & Chr(32) & Chr(124) & "*.txt"
  26.  
  27. CommonDialog1.ShowSave
  28.  
  29. Open CommonDialog1.FileName For Output As #1
  30.     Print #1, Text1.Text
  31. Close #1
  32.  
  33.     MsgBox ("Archivo Guardado.")
  34.  
  35. Exit Sub
  36. NoSeleccionoArchivo:
  37.  
  38. End Sub
  39.  
  40. Private Sub cmdNuevo_Click()
  41. Text1.Text = ""
  42. Text1.SetFocus
  43. End Sub
  44.  
  45. Private Sub cmdSalir_Click()
  46. End
  47. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement