Hello, i have gotten my program to successfully write to a file called test.txt. It has the first set of information on one line and the second set of information on the second line. The read code i have is putting the information together. I need to find a way to split the separate lines and get the information.

Also i have tried to use the sendkey function to send the information that is saved but it is not working. I have posted my code below and i hope that someone could help me with this situation.

Code:
Dim fileReader As String
        fileReader = My.Computer.FileSystem.ReadAllText(App_Path() + "test.txt")
        MsgBox(fileReader)

        SendKeys.Send(fileReader)
Then

Code:
SendKeys.Send(fileReader)