INTERACT FORUM
Windows => Plug-in Development => Topic started by: Qythyx on May 22, 2005, 10:06:48 pm
-
I'm working on a plugin that is being loaded into MC and is running just fine, but there is no UI shown in MC. Are there any tricks to this? Is there any reason the plugin would load correctly, but not show the UserControl?
-
Is there any reason the plugin would load correctly, but not show the UserControl?
not that i know of.
I'm working on a plugin that is being loaded into MC and is running just fine
How do you know it is running?
-
Because what it does is to reorder an existing Smartlist according to some rules I've come up with. Since I can't get the US working I have the name of the Smartlist hardcoded, but the reordering is definitely happening. Also I've put in some debug MessageBoxes and they popup as expected.
Actually, I just figured it out. Somehow I lost the InitializeComponent() call in the constructor of my class. It's back and the UI is there now too. :)