Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I tryed to run AutoCAD with codes like:
Process myProc8;
myProc8 = Process.Start(@"C:\Program Files\AutoCAD 2010\acad.exe");
or:
System.Diagnostics.Process.Start(@"C:\Program Files\AutoCAD 2010\acad.exe");
or:
Process p = new Process();
p.StartInfo.FileName = @"C:\Program Files\AutoCAD 2010\acad.exe";
p.Start();
But when AutoCAD starts, show the error, see the attachment "p1", and in command line, see the attachment "p2".
How to start AutoCAD with no error and/or with a profile,...
Solved! Go to Solution.