L
LearnMore.John
I have two Windows Desktop applications App1 and App2.
App1 is invoking Appp2 using Reflection.
When App2 application opens a Modal window, App1 Application also
freezes
I dont want to happen this, how can i avoid this.
Sample code how i am invoking App2 from App1
Assembly a;
a = Assembly.LoadFrom(installDir + @"\App2 .exe");
object[] args = new object[3];
args[0] = ideWSPath
args[1] = this.Size;
args[2] = this.Location;
Instance = a.CreateInstance("App2.frmMain", false,
BindingFlags.CreateInstance, null, args, null, null);
((System.Windows.Forms.Form)nstance).Show();
thanks in advance
App1 is invoking Appp2 using Reflection.
When App2 application opens a Modal window, App1 Application also
freezes
I dont want to happen this, how can i avoid this.
Sample code how i am invoking App2 from App1
Assembly a;
a = Assembly.LoadFrom(installDir + @"\App2 .exe");
object[] args = new object[3];
args[0] = ideWSPath
args[1] = this.Size;
args[2] = this.Location;
Instance = a.CreateInstance("App2.frmMain", false,
BindingFlags.CreateInstance, null, args, null, null);
((System.Windows.Forms.Form)nstance).Show();
thanks in advance