Anthony wrote:use C# and I will help a bit
How about you post the code in C# and he can convert it himself. I know C# is better now that I use it myself, but there are no huge differences...only thing I miss the the Optional property for the parameters
Basically what you could do is loop through until you find { then go to the next line and so on until }.
There are multiple ways of doing this. Especially in VB you have text functions that could help you like EOF and so on.
With a StreamReader you just increase the offset until you find { then you skip the first space, add the next chars to an array until next space then you know you are getting the next word etc.
Do it yourself.