Right now i have a line of code, in vb, that calls a text file, like this:
Dim fileReader As String fileReader = My.Computer.FileSystem.ReadAllText(\"dat
If you added the file as a resource in the Project + Properties, Resources tab, you'll get its content by using My.Resources:
Dim content As String = My.Resources.data5
Click the arrow on the Add Resource button and select Add Existing File, select your data5.txt file.