Yes, I am trying to call an instance of a Form (the main menu of the application), using the method Show(). The Form is not created before the invoke of the method and I want it to show up, so that I can use through LV.
It indeed shows up (not completely, the menu with the drag and drop capabilities enabled does not show), if I press continue in the mentioned error.
I have tried this approach with success for a different application that does not have any drag and drop menus.
Here are some more details about the error:
************** Exception Text **************
System.InvalidOperationException: DragDrop registration did not succeed. ---> System.Threading.ThreadStateException: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it.
at System.Windows.Forms.Control.SetAcceptDrops(Boolean accept)
This error does not show up when I start the application through the SO windows menu directly (as a standalone application).
Any ideas on the cause of the problem?
Thanks for all the help.
Diogo Ribeiro