ChemAxon aa7c50abf8
16-10-2006 18:37:59
Quote: | ||
I am developing a test application in .NET using Marvin and JNBridge. A Marvin View component is displayed as a .NET System.Windows.Forms.Form and when the user clicks on a "cell" of the Form containing the Marvin View component, an MSketch component should be displayed as another .NET Windows Form. My problem is that the MSketch component is halfway popped up, but then the entire application hangs.
|
Code: |
public void mouseClicked(MouseEvent e) { private MSketch popForm; if (popForm == null) { popForm = new Form1(); BeginInvoke(new myDelegate(mSketch.Show)); } } |
P.