Generating XML Documentation For Single VB Class In WebSite Project

Jan 26, 2011

I have Single VB Class inside website project and I need to generate XML Documentation for this class. is there any tool that can generate this documentation?

View 1 Replies


ADVERTISEMENT

Generating Documentation Like MSDN But Manually?

Jun 7, 2010

there are tools (SandCastle?) that can generate an MSDN-like documentation (HTML files) from your source code by using the XML comments above members. I am looking to generate a similar documentation (bunch of HTML files that one can link through), except not from XML comments but completely manually.It is for a custom scripting language, I have to document the available functions, and it would be great if I could do that in this common documentation style. Since there are no XML comments to generate the documentation from (the documentation is for the scripting language itself, not for my source code of the scripting language?

What I'm looking for in detail is a way to generate these documentation files by simply supplying this information for each function:

- Namespace (just the name and maybe a description)
- Function name + description + return type
- List of arguments and their types

from this I would to generate a document where one can first view all the Namespaces, click one (they are supposed to be links) and view all the functions in that namespace. Then you can click on a function name and view its description and list of arguments for that function.In other words: just like these automatic tools do, except now I want to supply this information manually.

While writing this I thought of one way that I might be able to do it: just create namespaces and functions in actual VB code (corresponding to the scripting language functions) and generate the documentation from that, but

1) That seems a little contrived especially if a better tool is available,

2) I would be in trouble with the types of functions and arguments, since they would have to be .NET types and not the types that my scripting language supports.

View 1 Replies

VS 2008 - Creating Comments Tags Without Generating XML Documentation File

Jul 6, 2009

When in VS 2008 if a developer hits the ''' it generates the XML comment tags for you, but this only works when the project setting for "Generate XML documentation file" is checked. Is there a way to tell VS to generate the XML Comment tags, regardless of the project setting? I think it is possible that someone may want comments but not create a XML documentation file. In this case I am exceeding the current Team Settings, yet other developers don't want me to change this project setting. This forces me to flip this back before checking in the project. I have the same problem with other Project settings like "code Analysis". This is only a problem for VB.NET projects.

View 4 Replies

How To Compile Single Class Into Existing Project

Mar 18, 2010

I have a VB.NET solution (call it S1) which produces a .vb file (say File1.vb) to be compiled and then included in another solution (S2). S2 is a console app which I want to run from a cmd prompt, not VS. My plan is to shell out from S1 to run a batch file to do the compile and then copy the .dll file, overwriting the old one in S2 (then I can run S2 in a separate operation). Here's the batch file for the compile:

View 4 Replies

VB 10 Class Project/Single Array Usage?

Mar 11, 2012

I'm doing a project for my beginners programming,logic, and design class. The project is a Sales Solution/Bonus Calculator. I really just want to know if I actually coded the array correctly. I've found the same project on here but I wasn't even really sure if what they had up was correct. I have a pretty solid idea of how to get through this I'm just feeling a bit overwhelmed. If you notice any other errors please point them out. I'm not looking for the answer I'm just looking for the path to get there on my own merit. Here's what I have so far:

Public Class Form1
Private Sub Report_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CreateReport.Click

[code]......

View 2 Replies

Why Server Property Not Available In Class File In Asp.net Website Project

Nov 1, 2010

In asp.net web site project , i have created a .vb class file in App_Code folder. In that class i have created a Shared SubRoutine , in that code i want to use Server.Transfer method to transfer control to another web page .But Server property is unavailable in that code. Where is problem ? can anyone explain this.

View 1 Replies

Website - Documentation - How To Access

Aug 23, 2010

Website, Documentation but do not know how to access it. [URL] [URL]

View 1 Replies

Generating Single And DTMF

Mar 21, 2009

I'm working on a project that will generate single and DTMF tones through the sound card. What I would like to do is send three single tones at specific levels and duration by toggle a button click (2175 @ 0DBm 120ms, 1950 @ -10DBm 40ms, 2175 @ -20DBm) is only one of a few. I would also like to generate DTMF tones as well.I've look at several code samples on line how to at least generate a tone.My question is can I use FFT to calculate the amplitude and set the 0, -10, and -20 levels? Also, how can I generate the single and DTMF tones?

View 2 Replies

.NET Project Coding Documentation?

May 25, 2010

I want to know the professional way to comments VB.net project coding. In future, it may help to other people, whom may update my project.

View 4 Replies

Writing Function Documentation In A Dll Project?

Apr 26, 2012

I am creating a dll to use with all my projects and have run into a problem. functions work fine and i have no problems using the dll with a project but i am trying to add xml documentation to the functions in the dll so that i have information when i call it, i can see the summary if i call the function from within the dll project but not if i call it from a seperate project.

View 2 Replies

Running My Project On Another Machine Then The Project Generating?

Dec 14, 2010

I am in Great problem, When I am running on my own machine then there is no problem creating but when I am running my project on another machine then the project generating problem which like this 'Could not load type 'TechnoAid.FrameWork.logManager' from assembly 'TechnoAid.FrameWork, Version=1.0.0.0, Culture=neutral,PublicKeyToken=null'."Source="Inventory.Metadata"TypeName="TechnoAid.FrameWork.logManager"StackTrace:

View 1 Replies

Write Technical Documentation For A Project Flow?

Apr 21, 2009

How to write Technical Documentation for a project flow

View 1 Replies

IDE :: Class Description Structured Documentation?

Sep 25, 2011

I once was able to insert a Class-Header type XML comment section which structured the describing of a class; I now cannot remember how I did it. I think I either used a snippet or some macro-type character combination that inserted some XML documentation fields which made commenting a class well structured. It may have even been an extension.

View 3 Replies

IDE :: Project No Longer Recognises XML Documentation, And Does Not Access Namespace Correctly

Sep 30, 2010

I've just picked up a project from someone who has recently left our company, and the project file for the project has somehow had XML documentation deactivated. Typing ''' no longer automatically creates XML documentation segments, and existing XML documentation within the code does not show up in Intellisense, and is also not correctly highlighted as XML documentation.

In addition, the Intellisense for the My. namespace contains only MySettings, Resources and Setting under the "All" tab. Everything else is missing. Attempting to manually write My. namespace code results in compile errors. These are not problems with the IDE; I can start a new project and both Intellisense and My. work fine in these new projects. I can only assume that this is something which has been set on the project itself.

View 3 Replies

Class Documentation In Msdn Library For AxShockwaveFlash?

Jan 26, 2012

I don't find the properties and events for this class, and i don't know where in msdn library, is possible to find the documentation.

View 2 Replies

VS 2008 Bind A Single DGV Cell To A Single Class Property?

May 7, 2010

I am trying to use the DGV to view various properties from a variety of different class instances. Is it possible to bind each cell individually?

View 9 Replies

Secure A Single Aspx Page In Asp.net Website?

Mar 14, 2012

I have multiple aspx pages in my web site but i want to secure only one page.I used the asp.net membership and role manager but it require user name and password for all pages but i want to secure only a single page.please any one can help me how can i do this in vb.net with asp.net .I have used the following code in web.config but it applies on all pages which i dnt want

[code]...

View 3 Replies

A Class For Generating Unique Numbers For Invoices / Empid's / Customerid

Mar 12, 2012

generating unique ids for invoices,customerids and employee ids, etc. and thought it would be great to share this as i will use it within my aps all the time now.[code]

View 7 Replies

Define A Class Such That There Can Be Only A Single Instance Of That Class?

Jan 20, 2012

Is there a way to define a class such that there can be only a single instance of that class?

View 5 Replies

Create Two Diff App In Single Project?

Feb 23, 2010

I need to create two diff app

1.Windows application

2.WPFapplication

in a same project.I need to call forms and pages of both app and integrate them ex How to call WPF page from a win application)

View 1 Replies

How To Bundle More Than One Project As A Single Solution

May 14, 2010

I have two separate projects and I need to bundle them together as a single solution, how do I? I am using VB2008 in VS2008.

View 4 Replies

Add Wcf Functionality To An Existing Website Project?

Dec 27, 2011

I have several asp.net website projects for various sites.Currently I want to add REST API's to these projects so I can start developing mobile apps (using HTML5/JavaScript/CSS3 and PhoneGap) that make use of these webservices.

Since WCF is far more powerful than regular asp.net webservices (among others with control over the service and authentication/authorization), I'd love to add these to my existing website project.

I did a Google search but cant find anywhere a step-by-step tutorial how this can be done. And also if there's any functionality I'd possibly loose when adding WCF functionality.I was also thinking of creating a new project specifically for WCF, but think I'd rather add it to an existing website project.

View 2 Replies

Make Website / Project Portable?

Mar 13, 2009

I have an ASP.net 3.5 website and I am using vb.net in VWD 2008 Express, I am also using MS SQL Server 2008 Express, I used ajax tabs and a textBox charavters counter control develped by [url]...The database is attached with MS SQL Server Management Studio Express and the files are stored in the SQL default "Data" folder.

The whole project's code and forms are stored in a folder in my E drive.I need to hand the whole project to another coworker who have to finish it, please describe in steps how can i make my website portable (like i can put it all in a folder that he can carry around in his flash disk).

View 1 Replies

.net - MasterType After Converting From ASP.Net WebSite To Web Application Project?

Aug 18, 2009

After converting a Asp.net website to web application, I receive 'Type MyNameSpace.MyMaster is not defined' error on pages that use the MasterType directive.

eg In the aspx file <%@ MasterType VirtualPath="~/MyMaster.master" %> In the designer.vb file the following code is generated and has the error described above:

Public Shadows ReadOnly Property Master() As MyNameSpace.MyMaster
Get
Return CType(MyBase.Master, MyNameSpace.MyMaster)
End Get
End Property

[Code]...

View 2 Replies

Change The Website Name For Project From Another Development Environment?

Nov 23, 2009

I have inherited a large VB.NET solution that was created in VS 2003. I am trying to update it to VS 2008 to maintain it. I no longer have access to an install of VS 2003.

The solution contains 15 projects that are console applications and 1 that is a Website application. The website application refers to some assemblies in the other console projects.

When I try to open the solution in VS 2008 all the console applications open but as it tried to open the Web application (or website? -- not sure) I see the dialog "Trying to open http://dmedibiz/dotcom.vbproj". It is unsuccessful in doing so. I don't have a website named http://dmedibiz on my development machine.

I tried changing the name of the website in DotCom.vbproj.webinfo, but that does not have any effect in VS 2008. When I go so far as to change the Hosts file so that the local machine resolves "dmedibiz" to the proper folder on my local machine, I keep getting prompted for a login and cannot access the folder even using the administrator login. I have tried adjusting the security on the Folder and in IIS Manager and even in the Frontpage Extensions, but nothing works.

So, what can I do to open this web project along with the other projects whose classes it references? Is there a way to change the website reference in the upgraded application? I actually do not want Frontpage Extensions in the site, but there was some reference to that also in the erro messages about installing them to "fix" the problem.

Here is the error I am receiving...

Unable to open the Web site '[URL]. Could not find a Web server at 'http://dmedibiz'. check to make sure that the Web server name is valid ...'

Can anyone tell me how to change the website location reference? Or must I remove the Web project from the solution and create a new Website and then copy in the files that need to be worked on?

View 1 Replies

IDE :: Select Framework Version For New Project / Website?

Jan 21, 2012

confirm the forum for this question about Visual Web Developer 2010 Express. I found a VWD Express forum, but it was in Spanish... Lo Siento. My issue is selecting a down-level, 3.5, framework version as I create a new project/website. I have figured out how to CHANGE the target framework version once the website/project is created. I have the 3.5x installed on the system and available. The articles I have seen discussing this issue, refer to a framework version selection drop list in the new project creation dialog/wizard. I do not have that option.

[Code]...

View 5 Replies

ConfigurationManager Class For Website In Asp.net Using .net?

Apr 9, 2012

what is the meaning for this whole AssignConnString function?? It is because I am not understand what is meant by ConfigurationManager class.

[Code]...

View 2 Replies

Use C# Class In Web Application (not In Website)?

Jul 16, 2010

I have a Class file which is written in C#, I want to use this class in my Web Application which solution is in vb.netf I place this C# class file either in root folder or App_Code folder, it does not allow me to create object, show syntax error, and intellesence is not working for this object.

View 8 Replies

VS 2008 How To Get Class From A Website

Feb 19, 2011

i was trying to do it by my self, i tried hard but i see i can't do it. By the way the code on website is this:

<tr class="even">
<td class="points"></td>
<td class="status"><img src="/images/status/WomanCameraPrivacy.gif" alt=""></td>
<td><div class="nick"><a href="/profiles/000_marina_1960">000_marina_1960</a></div></td>
<td>74</td>
</tr>

That what I'm trying to get is the "nick"

View 3 Replies

C# - .NET Multiple Namespaces For Single Class

Sep 27, 2010

Is it possible to have a single class reside within two name-spaces and how can I do this?

To clarify: We have a class library (let say root namespace is classLib1), which has grown over time (more classes) and I want to logically group classes into different namespaces. However some of the older classes need to be grouped into these new namespaces (e.g classLib1.section1) and doing so will break legacy code in other assemblys that use this class library. So I want to be able to refer to a class using both name-spaces until we can phase the old ones out.

I can't find any information on this, which suggests there is a reason that people would not want to do this!?!

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved