Someone has written a utility that converts a file from fixed length to variable length and vice versa(If you don't know what that means, no big deal, it's pretty much irrelavent to my question). When calling it from the command line, it takes two parameters, the source file and the destination file. E.g.
In this case, test.fix exists and test.var is created by fileconvert.Code:fileconvert test.fix test.var
How do I do this in my code? I've tried
but it bombs out on me with an exception, "The system cannot find the file specified."VB Code:
Process.Start("fileconvert " & TextBox1.Text & " test.var")




Reply With Quote