Just a little project of mine:
It's a programming language I'm writing using VB.NET. http://code.google.com/p/nsoft-v/
You're using windows XP, really?
Yes, really. :3
Nice to see you are still continuing your little project, good luck!
If your serious about creating a programming language it would help to learn about context free grammars and about parser generators http://en.wikipedia.org/wiki/Comparison_of_parser_generators
While we're here, could someone help me solve this problem? The error is `Index and length must refer to a location within the string. Parameter name: length` and the code is `Dim msgstyle As MsgBoxStyle = Command.Substring(Command.IndexOf(", "), Command.IndexOf("Title"))`
`Index and length must refer to a location within the string. Parameter name: length`
The code (in V) that that line of vb code is for is `console>msg>"Hello World, okonly Title=example`
So, the msgbox style is being read from the space after the comma to the t in title, although I'll probably change it to msgboxstyle>okonly so that people can use commas.
The code is now `Dim msgstyle As MsgBoxStyle = Command.Substring(Command.IndexOf("msgboxstyle>"), Command.IndexOf("Title"))`, but I''m getting the same error (with the substring method)
Join our real-time social learning platform and learn together with your friends!