How to Create a New Document Window in a VS.NET Add-in

  • Thread starter Thread starter Charles Law
  • Start date Start date
C

Charles Law

Does anyone know how to create a new document window in VB.NET (or any other
language)?

I have Googled extensively but to no avail.

I am creating a VS add-in, and want to include my own document window to
present some information.

Any pointers greatly received.

TIA

Charles
 
Hi,

Take a look at the addfromtemplate and addfromfile methods

http://msdn.microsoft.com/library/d...rfaddfromtemplatemethodprojectitemsobject.asp

http://msdn.microsoft.com/library/d.../vxlrfaddfromfilemethodprojectitemsobject.asp

Link to some good resources for vs.net add-ins and macros
http://www.knowdotnet.com/add-insmacros.html


Ken
----------------------
Does anyone know how to create a new document window in VB.NET (or any other
language)?

I have Googled extensively but to no avail.

I am creating a VS add-in, and want to include my own document window to
present some information.

Any pointers greatly received.

TIA

Charles
 
Hi Ken

Thanks for the reply. The first two look like they are to do with files, in
some way. I am thinking more in terms of creating a form: either a windows
form or an html form. In each case, there is no file to load from. A good
example of what I am trying to achieve is what Document X! does with its UI.

I will look more closely at the third link.

Cheers.

Charles
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top