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
ADVERTISEMENT
May 21, 2009
I have a windows project with an MDI interface.
I want to add a menu item called "Help" and when clicked load a HTML document I will create with another application.
Can I do that in a windows .NET 2008 program?
View 9 Replies
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
Apr 21, 2009
How to write Technical Documentation for a project flow
View 1 Replies
Sep 28, 2009
How is it possible to add a function description in VB.NET (VS 2005)? in C# this task is resumed to tape 3 times the "/" simbol just above the function declaration. (generates the <summary> tag and others)
View 14 Replies
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
Mar 13, 2011
Since I've been writing my prgram, I felt the need to provide documentation in much the same way VS2010 does.I've searched everywhere I could, but all the references I could find where for older versions of the IDE.It appears there is no builtin facility to produce documentation and this sounds silly to me.I found external programs, but at 300$ a licence it's way over the top of my budget.Even the hints and tips stickied on this forum are out of date, as they refer to VS2005.So how should I produce inline documentation for my classes
View 4 Replies
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
Dec 17, 2009
It is really too bad that Microsoft (who once had the best documentation in the business) has slipped so badly. Good documentation does not really require analysis, though, admittedly, it is a lot of work. To wit: for each and every single method, function, event and operator provide the following: a brief topical functional description including any parameters, a detailed description of how the object works, a workable example of the code needed to make this object do something useful and links to all possible associated objects (See Also).
I see pages upon pages of useless text and links to other pages full of links. This rapidly descends into a crevace of unbelievable complexity for the developer trying to find out something truly simple like filtering a DataGridView without changing the data connection. (As it turns out this is very simple to do but I could not find a single example of how to do it in the Visual Studio documentation.)
View 19 Replies
Aug 8, 2010
I'm wanting to burn the contents of a folder to CD from within a VB.net project.After a few hours of research it doesn't appear as simple as I thought it would.Is it possible to control the native CD writing wizard on XPWin7?All I need to do is add the folder, give the CD a name and start the burn - the Wizard would be ideal and save hours of coding.
View 1 Replies
Nov 18, 2010
I have the following function written for dot net 3.5 that uses "ElementAt()" to successively return a value from a dictionary collection.
Public Function GetNextEntryInfo() As EntryInfo
If mFileInfo.Count > mIndexLoc Then
Dim entry As EntryInfo = mFileInfo.ElementAt(mIndexLoc).Value
[Code].....
View 2 Replies
Sep 13, 2010
I have created a simple project where I have two forms, one a data entry form where a client name, address, city, state and zip are entered into textboxes. Then, the user clicks a button to add all this data to the datatable via a newrow. The second form includes a datagridview to show the datatable. However, I cannot get the code below to work to update the datatable. I have a button to click to check to see if the data is entered and it returns an error that no row exists.
View 2 Replies
Nov 3, 2009
is there a proper way to duplicate a function (f1) instead of re-writing every single constructor f1 has and passing those arguments from f2 to f1..i tried to import System.dll using the alias method but it doesn't work anyone knows why?
View 18 Replies
May 19, 2011
I would like to read each line of text from the file outputted from this block.Each line is then used with the service controller to output a list of services running on that computer.
Dim de As New DirectoryEntry()
'Name place to write file to
Dim strFile As String = "C:DomainUsers.txt"
[code]....
View 1 Replies
May 5, 2010
I am in the process of writing a battleship game for a final project for school. I get what to do for the most part, but need a little jump start for writing the "ships" class. Does anyone have any suggestions?
So far my game starts with a dynamic array of buttons, but as of now they don't do anything. I need to be able to have the user place ships in places and have the computer randomly generate positions.
View 2 Replies
Apr 19, 2010
I have written the following Sub in moduleFunctions to call in any form. But it gives an error: "Name 'txtVNO' is not declared" & "Name 'txtVNM' is not declared"
Public Sub txt_Clear()
txtVNO.Text = ""
txtVNM.Text = ""
End Sub
View 6 Replies
Apr 12, 2012
I am trying to return a javascript function using response.write in an aspx page. The problem is that the function i am returning has lots of quotes and they are conflicting with the repsonse.write syntax. Here is a sample code:
Response.Write(" If hello.StartsWith("H", StringComparison.InvariantCultureIgnoreCase) OrElse hello.StartsWith("W", System.StringComparison.InvariantCultureIgnoreCase) Then")
This is giving me a problem as the quotes inside are cutting off the response early. Is there a better way to do this?
View 4 Replies
Jun 13, 2011
writing a function to validate that a user has entered their full name (so at least two names must exist in the textbox).
View 2 Replies
Oct 23, 2009
i grow familiar with statements queries of SQL. Now, i have to start writting a store produce and function in SQL Management studio express.
View 1 Replies
May 22, 2012
Ok I know this question has been asked to death but I still have not seen a good answer. I have created an application in VS2010 using VB.NET. In my application I have an error log that is an XML file located in the Public gstLocalErrorLogLocation As String = Application.StartupPath & "ErrorLog"that gets written to in the event of an error so I can trouble shoot application easier. My application also downloads files from our FTP site and puts the files in Public gstLocalDownloadLocation As String = Application.StartupPath & "download"So I have files that get read and written to as well and created and deleted all in the Application.StartupPath which is either "c:Program Files(Application Directory)(Some Directory)(Some File)" or "c:Program Files (x86)(Application Directory)(Some Directory)(Some File)" depending on 32bit or 64bit Windows 7.
After creating the setup I install it on my test machine that have both Windows 7 32bit and 64bit.Everything in the application works great till I have to write to, delete or creat a file in those directories above. I know it is an access issue and the UAC. This will get installed on numerous systems so the options I have seen to change file or folder permission on the computers manually is not an option.What has to happen is after I install the application it just works like when you install it on XP. Some post have suggested that you us a user with administrator privilages or group which is all fine and dandy but the user I have used to test the application has all of that.
So what I am asking is how do you create an application with VS2010 in VB.NET that after creating a setup package and installing on Windows 7 will just work with out "Access to the path c:Program Files(Application Directory)(Some Directory)(Some File) is denied." If I have to install this on 100 Windows 7 computers it has to be a concreate no manually doing anything just install and work like when we installed on XP.
View 5 Replies
Jan 11, 2011
I'm wanting to add two forms to my project that will allow me 1) Pull all the current MS Updates installed and list them in a nice looking grid, 2) Pull a list of all the available updates for the machine. I would love for this to work on XP/Vista/7.
View 5 Replies
Nov 13, 2009
As per [URL] How can I achieve this? 'processPacketVB' is a 'variable' but is used like a 'method' is the error I'm getting with these references to the project and class and function.
using VBProcessPacket;
namespace UIST {
public partial class FormActionMenu : Form {
private void timerDelay_Tick(object sender, EventArgs e) {
VBProcessPacket.ProcessRX processPacketVB = new VBProcessPacket.ProcessRX();
//read the receive buffer as a string
RXpacket = processPacketVB("test"); // processPacketVB throws the error 'processPacketVB' is a 'variable' but is used like a 'method'
View 5 Replies
Jun 24, 2009
I would like to make a snippet for a try catch block. In the catch block I will have a call to a senderroremail function.Is it possible to have the snippet automatically grab the function where the try catch is and the project? Like have it end up somewhat like this
Try
'code
Catch ex as Exception
senderroremail("projectname@domain.com", "an error occured in functionname in projectname", "webmasters@domain.com", ex.message)
End Try
View 3 Replies
Jul 27, 2010
So I want to test one of my Functions in my Web Project, but it's not actually connected to anything in the project yet (someone else is working on that part). The Function takes in an "ID" field, goes off and does some queries and gets some data, performs some calculations on it, and then writes a bunch of lines to a FileStream and returns that stream. I pretty much just want to test it by having it write the file to my own computer locally, and working with that file directory after the Function completes.
So my question is mainly:
1) How do I call this Function just for testing purposes so I can test all the queries/calculations/File writes, etc without it being connected to another part of the application just yet.
2) How can I change the 'Return fs' for the FileStream to write to my own computer locally to view the file that has been written.
View 2 Replies
Aug 11, 2010
Given the following code and link to SkyDrive VS2010 project, how would I create this vb.net project and access it in my c# application?
//the following c# project reference to function in vb.net is not working
string retval = ConvertUTF8_toASCII.UTF8_toASCII(stirngToConvert);
View 5 Replies
Dec 13, 2011
I am not able to use Format function in a converted VB2008 project in VS 2010.
MSDN Documentation about Format function in not available for VS 2010.
Has that function been deprecated? If so, what is the alternative?
View 1 Replies
Jan 31, 2010
I am creating a visual basic project for class. It is all running as intended though I am not sure how to set up the login to database function. When you click the link for the specific report it should display the page. But I get a login to database page. I am just wondering how I set that up so that one can actually see the information. ie:
[Code]...
View 1 Replies
May 16, 2011
where can i find some good documentation or training on how to use WMI?
View 3 Replies
Mar 7, 2012
I am trying to use xml documentation tool in my application. one of my methods receives 'ParamArray' as an argument. i want to document this argument elements.
here is my code
Public Sub LoadSearch_ByEmployee(ByVal EmployeeID As Integer _
, ByVal FromDate As Date _
[code].....
View 4 Replies
Apr 26, 2010
I have written up troubleshooting documents for my project and would like them included in my program. I remember in VB6 there was a very easy way to do this with a control, where it already has the help document tree set up on the left and you just set it to point to certain files.
Does something like this exist for .NET? I am aware of the HelpProvider control but as far as I know this just puts in tooltips and opens documents on a button press?
View 1 Replies