|
-
Oct 15th, 2006, 12:56 AM
#1
Thread Starter
Just Married
-
Oct 15th, 2006, 11:34 PM
#2
Thread Starter
Just Married
Re: Documentation
Any idea
-
Oct 16th, 2006, 06:41 AM
#3
Re: Documentation
Not a specific question regarding .NET or databases.
Moved to General Developer
-
Oct 16th, 2006, 07:13 AM
#4
Re: Documentation
If using Vb2005, typing 3 single quotes above a method/member etc will create a template for you to fill like:-
VB Code:
''' <summary>
''' An abstract base class that a document area writer class must implement
''' to draw data onto a structured print document
''' </summary>
''' <remarks>This interface defines teh bare minimum requirement but
''' implementing classes can extend the functionality by implementing
''' extra parameters</remarks>
Public Interface IStructuredPrintDocumentAreaWriterBase
Fill this in and then use the Sandcastle tool (available for free download from Microsoft) to compile it up to a help file that integrates with MSDN help...
-
Oct 16th, 2006, 07:20 AM
#5
Thread Starter
Just Married
Re: Documentation
I want to make documentation in the word file not in the dot net project
-
Oct 17th, 2006, 06:45 AM
#6
Fanatic Member
Re: Documentation
Bad idea as there will be no link to the project and can easily be lost. Use what was suggested by Merrion and after creating the MSDN help for your control it can then be easily ported into Word
 Life is one big rock tune 
-
Oct 20th, 2006, 10:18 AM
#7
Re: Documentation
For a user control youi should also consider decorating the class members with the <Description()> and <category()> attributes (from system.componentmodel) so that they play nicely with the property grid in the IDE.
-
Oct 20th, 2006, 12:06 PM
#8
Thread Starter
Just Married
Re: Documentation
 Originally Posted by Valleysboy1978
Bad idea as there will be no link to the project and can easily be lost. Use what was suggested by Merrion and after creating the MSDN help for your control it can then be easily ported into Word
But it is the company requirement so i have to make it in the word file so have you now any idea for it.
I am able to make it but i do not know the proper way
-
Oct 27th, 2006, 06:32 PM
#9
Re: Documentation
Well if you use Merrion's method, it will output an XML file with the documentation that is above the code. You could then apply a style sheet to that document and render it to HTML.
The problem with a word document is that if a function gets changed, you have to manually update the document, whereas if you keep the info in the code, it can rebuild your docs for you automatically.
-
Nov 3rd, 2006, 06:39 AM
#10
Fanatic Member
Re: Documentation
Use merrions method above but use nDoc instead - it can output word files IIRC
Martin J Wallace (Slaine)
-
Nov 3rd, 2006, 06:41 AM
#11
Thread Starter
Just Married
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|