Advertisement
idsystems

VBBD_Ejercicio 05

Jan 17th, 2012
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Option Explicit
  2. Dim pepe As String
  3. Dim renglon As String
  4.  
  5. Private Sub Command1_Click()
  6. renglon = Chr(13) & Chr(10)
  7. Text1.Text = ""
  8. Open App.Path & "\pepe.txt" For Input As #1
  9. While Not EOF(1)
  10. Line Input #1, pepe$
  11. Text1.Text = Text1.Text & pepe & renglon
  12. Wend
  13. Close #1
  14.  
  15. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement