Hello,
I have this very simple batch file that contains one command:
xsltproc -o output.html stylesheet.xsl input.xml
When I double-click the batch file, everything works fine. However, the batch file doesn't work when I execute it from my vb.net application:
Dim p As New System.Diagnostics.Process
p.StartInfo.FileName = "[I]path[/I]\go.bat"
p.Start()
cmd seems to open briefly, but the ouput.html file is not created.
Any ideas?
Thanks