Right now I have a line of code in vb that calls a text file, for example:
Dim fileReader As String fileReader = My.Computer.FileSystem.ReadAllText("data5.txt")
data5.txt is a resource in my application, however the application does not start because it cannot find data5.txt. I am sure there is another code to search for the .txt file in the resource that I am viewing, but I cannot figure out how to figure it out. So does anyone know a simple solution about this? or maybe another whole new line of code? Thanks in advance!
source share