
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is it possible to launch an external .exe WinForm from a revit ribbon command panel just like an add-in(I can already do this) and still model and detail in Revit without the wait cursor, which I am taking to be a synchronous lock created by revit or the api.
This below is a code snippit from one of Jeremmy Tammik's blogposts, thanx for the help here Jeremmy, This is invoked from the external app based on JT's blog as well! This helped a great deal in that I could make async calls in my app without dealing with the frailties of the entire revit17 app crashing.
using( Process proc = Process.Start( start ) )
{
proc.WaitForExit();
rc = proc.ExitCode;
}
return rc;
So Have I possibly not implemented the instructions in this link below correctly?
http://thebuildingcoder.typepad.com/blog/2014/07/launching-a-stand-alone-executable.html
If I have is it possible to launch my standalone app and then work in revit in parallel as if the two are in separate universes?
Solved! Go to Solution.