Re: [2008] Read File Text
First of all, in your other thread I pointed out that your App_Path method is pointless. Use Application.StartupPath or My.Application.Info.DirectoryPath.
As for reading the file contents, you could use String.Split to split the result of ReadAllText into an array but there's no need. The File.ReadAllLines method is what you want.
Also, you should make sure you've read the documentation for the SendKeys.Send method so you know exactly how it works.
Re: [2008] Read File Text
Ok thank you i will read the documentation tomorrow. I know the app_path thing is pointless but i am so used to vb6 i cant get past using it.
Re: [2008] Read File Text
So you're going to declare a method named App_Path in every project you create just so that you can use the same name as you did in VB6? If you don't declare such a method then you won't be able to call it so you'll soon get used to its not being there. Trying to make VB.NET feel as much like VB6 as possible is a sure way to make it harder to learn VB.NET. To each their own though.
Re: [2008] Read File Text
Yea i guess ill start using Application.StartupPath then.