Creating a document window in Visual Studio
Visual Studio
1
Posts
1
Posters
0
Views
1
Watching
-
Hi I'm trying to create a custom document in a Visual Studio Add-in. What i want to do is load a usercontrol, and show it as a normal document. Just like if you were editing a C# file. The content of the document, is not loaded from the project/solution, but using a webservice. The most obvious approach was creating a class, that inherits the IDocument interface, and implement the signatures. There after add it to the document collection. This is where it breaks - I can't add an IDocument object, only a guid. Any thoughts on how to accomplish this? All help is welcome! :omg: