m just starting out on VB and C++.
Not sure which to use.
Im looking to create a GUI interface program that calls on an external cmd line application to convert a file from xml to html. What I need it just to have the user be able to select the source XML file with a browse button. Then select with another browse button where to output the convrted file. Then hit a "Go" Button run the process
A) Select a file from the hardrive
B) The project would pass the file name to and external application with two arguments(input filename, output directory)
Im assuming I want to use the shell statement
So I would be passing the original XML file name selected (file.xml) and passing the output directory to the application. Then user would select GO and the external appliction would convert file.xml to file.htm and save it to the output directory.
Not sure which to use.
Im looking to create a GUI interface program that calls on an external cmd line application to convert a file from xml to html. What I need it just to have the user be able to select the source XML file with a browse button. Then select with another browse button where to output the convrted file. Then hit a "Go" Button run the process
A) Select a file from the hardrive
B) The project would pass the file name to and external application with two arguments(input filename, output directory)
Im assuming I want to use the shell statement
So I would be passing the original XML file name selected (file.xml) and passing the output directory to the application. Then user would select GO and the external appliction would convert file.xml to file.htm and save it to the output directory.