Hi,
I have the 'resources' folder in my project and it contains a text file called dictionary.txt, which i refer to in my code as
This works perfectly.Code:My.Resources.dictionary.Split(New String() {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)
I then added a second text file called definition.txt, but when i refer to
This gives me an error 'Definition is not a a member of 'Resources'Code:My.Resources.definition.Split(New String() {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)
Can anybody help, as i can not see a way to fix this.......




Reply With Quote