Hi all,
I'll try to keep this breif and to the point.
I have two C# assemblies used for starting my application:
The first creates an AutoCAD instance and execute commands using COM interop.
The second is a .NET dll which has a command entry point.
The application starts up fine, but I notice I am having a synchronization issue.
Apparently, when I call AcadDocument.SendCommand( ) the function doesn't wait for my second assemply to finish.
In the second assemby, I am using WPF (Windows Presentation Foundation) in order to display a GUI, which is shown via Window.ShowDialog( ).
My expectation is that Window.ShowDialog( ) actually causes the first assembly to not finish the SendCommand( ) function. However, I am apparently wrong.
Anyways... let me get some code up here so you can visualize what is happening.
Assembly 1:
//Create AutoCAD instance, then...
acadApp.ActiveDocument.SendCommand("(command \"NETLOAD\""+@"""C:\\acad\\networkdll\\SecondAssembly.dll"") ");
acadApp.ActiveDocument.SendCommand("#MYCOMMAND 0 ");
//Close the startup drawing (this requires waiting @ SendCommand) because
//Drawing will cause a COMException otherwise. 'Drawing is busy'
//Mostly likely since the ActiceDocument is the startup drawing.
Assembly 2:
[CommandMethod("#MYCOMMAND", CommandFlags.Session)]
public void CommandEntry()
{
//Process command argument, then...
//Create window.
MainWindow mainWin = new MainWindow();
mainWin.ShowDialog();
}
Instead of the applicating waiting for SendCommand( ) to finish, it ends up hanging at the entry of a foreach loop (makes absolutely 0 sense to me). The loop is used for interating through the document list in order to find the startup drawing.
Well, am I stuck? Does anyone know if there is a way to synchronize this in a better way?
As a desparation, I could create a lock file I suppose in order to determine when to continue processing; that is a workaround however.
Anyways, I greatly appreciate those of you who spend your time helping an random person over the internet.
Thanks and God bless!
Nicholas Miller