|
I am trying to use a converter (an exe file) to convert *.dwg files to *.vdf through code. I am using following code which is not working. <code> Dim AppPath As String Dim val As Integer val = 1 parameters = "? " + sourcefilename + "? " + destfilename AppPath = App.Path & "\vdconv.exe" success = VDPro1.VdShellExecute("", AppPath, parameters, val) <code> is there any other method to do this?
|