Why There's No Block Comment Capability
Feb 4, 2010Does anyone know why there's no block comment capability in VB .NET? (Unless there really is
View 4 RepliesDoes anyone know why there's no block comment capability in VB .NET? (Unless there really is
View 4 RepliesWe've created a little plugin to add a block of xml comment and create a try-catch to a function. (we simply add this to each and every function we write).But with the latest devexpress update I'm having a problem with the following code.[code].........
View 1 RepliesHow to comment multiple lines of code/block of code in VB?
View 5 RepliesI have a managed directx 9.0c application that fails to run on some low spec machines (ones without graphics card).I am wondering if anyone has any suggestions with regards to the minimum directx caps to test for so that I can catch a potential failure before trying to run the application.The directx application only displays a few meshes and a couple of textures and nothing too intensive
View 1 RepliesIn the last day or two I've lost the ability to edit code while the program is running (and halted at a breakpoint).I also can't instantiate otherwise unused test variables for purposes of examination - I'm told they don't exist in the current context.Also System. Diagnostics.Debug doesn't work anymore.the error message generated when attempting to edit is :Changes are not allowed in the following cases:
- When the debugger has been attached to an already running process.
- The code being debugged was optimized at build or run time.
- The assembly being debugged is loaded as domain-neutral.
- The assembly being debugged was loaded through reflection.
I suspect that optimizations are being performed that are causing all this but I can't find where they are being set nor why they have changed.tools/options/debug shows that Edit and Continue is enabled although it is grayed out while the progarm is running. Windows 7, X86.
I looked on the JSON.org website but I couldn't find any JSON library for Visual Basic .NET, does one exist?
View 4 RepliesI want to make a download Manager with resume capability (dont refer me to codeproject examples which use httpwebrequest and webresponse classes) i want to make the use of system.net.webclient class. I know it can provide me with events and stuff but is it possible to resume our downlaods with this class ?
View 6 Repliesi want to create a program that has a countdown timer for a specific time month/day/hours with resume capability...
[Code]...
I am writing a windows application in VB.Net.
My client wants an intelligent combo box with type ahead capability. For example let's I have a list of companies. I want to find my company "MetaPro". With the Microsoft combo box if you type in the first letter of the name it will bring up first one starting with that letter. For example I type in "M" it will bring up "Mass. Dept. of Ed.", I then type in "E" I get the first one starting with "E" maybe "E, G & G" where I want the first one starting with "ME".
Perhaps there is an open source solution to this or I could create a custom control. But I don't know how.
Is Win32 API a good approach for use with USB communication between VB2005 and a microcontroller with USB capability? If so where can I find these APIs?
View 2 RepliesI'm presently creating an application which uses Access2007 as the database. No problem there. But Since most use Excel for data-entry, i've created two tables in access linked to excel source file. Any change in excel will reflect in Access database and subsequently in my Application . Until now my application only reads the database and displays records in DataGridView. These records, i then export to excel along with other formatting for direct printing as a report as I have no idea how to make report. Now i want to add data-entry capability to my app using password-protection user-access. So i can directly add new record to source file. Also need to know if There's any way of eliminating Access from the picture entirely....
View 1 RepliesI've got an issue with an Access97 replicated database that I'm writing a small monitoring app for. I've got FSW's to track changes to the necessary files, but am having some issue in enumerating exactly what has changed in some instances, specifically when attributes may have changed. I'm using a similar strategy to track this as I did for changes in size. I've got a Private class variable for the size of each file and a local method variable and compare the two, when different, update the class variable for the next comparison.
[Code]...
What is comment in VB.Net and how to comment.
View 4 RepliesI found something weird in VB2010 a few minutes ago. The problem is making a variable called "rem". I searched on Google and found that "REM" is a comment, similar to single apostrophe '. Why is this the current behavior? Why not stick to ' only? Sincerely yours,
[Code]...
If we need to comment more than one line we'll use the following syntax in C#.NET.
/* this.comboBox1 = new System.Windows.Forms.ComboBox();
this.button1 = new System.Windows.Forms.Button();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.textBox1 = new System.Windows.Forms.TextBox();
[code]....
nice east one, how can i do a multiline comment ?
View 4 RepliesIs there a multiline comment in VB.NET besides '?
View 11 RepliesHow do you retrieve a comment from an XMLElement using Linq in VB? For example:
<MyXML>
<event type="MyEvent" uid="3">
<start>2009-02-01T12:00:00</start>
[code].....
I am trying to integrate the ckeditors file browser and upload image tools, i have managed to set the ckeditor to allow you to click on the browse file button and upload tag but how do i use ASP.NET VB to open the file browser and make the upload image work?
I am using the .NET 3.6.0 version where they provided the DLLS
I am developing an application using vb.net which generates an xml file from Datagridview contents at the end. the datasource for DGVW is a datatable and i generate the xml file using method[code]....
View 2 RepliesI have an XML document that I am deserializing (VB .NET 3.5 Framework), changing some values, and the serializing again. The original document has several XML Comments in it. When I go through all the deserialize/serialize all of the comments are lost. Is there a way to preserve the comments? If not, is there a way to add comments on serialization without having to walk through with the writer and manually add all of the comments back in the appropriate place?
View 1 RepliesWhen reading and writing data to an XML file, in XML code, through a VB application, how does one go about commenting out a specific XML code line? From what I've gathered the original <!-- and --> tags aren't compatible. So what would be the VB alternative? Or is it just not possible to comment out a line of XML code using XML code through VB?
View 5 RepliesI have read that it is possible, but how do I use them in VS2008? I would like to start commenting class's commands and properties, but I can't find how to.[URL]
View 1 RepliesI would like to know how to show a customized comment everytime i declare a class, function, or sub routine. I just dont want to copy and paste the summary comments everytime i declare a class, function, or sub routine.
'''<summary>
'''Class Name:
'''Programmer:
'''Description:
[code]....
Im working on a comment control. I mean a control, that has an input area for text and images and a line or an arrow for pointing to something. It should a bit look like the comment control in Adobe Acrobat.
My first idea is to put four standard controls together:
1) a RichTextBox to hold text and images
2) a Panel to hold the RichTextBox and some GrabRectangles around it (the Panel needs to be a bit greater than the RTB for the GrabRectangles)
3) a little Panel (3x3 or 4x4 Pixel) to hold another GrabRectangle for placing and resizing the line (the arrow)
4) a LineShape for pointing (its startpoint on the RTB and endpoint on the little Panel)
I have added a drawing.My question is: what can I use to put these controls together? Another Panel would probably do a good job. But it would cover a lot of additional area around the contained controls and hide other controls, so that they dont get mouse clicks.
So i am having a bit of a problem.. What i want is for my application to show the panel in the from to display a windows explorer selection.. Look here
You see the panel 2 in here... Well the panel 2 needs to display this...
Is this possible you know like with a library or an extension or something.. Or do i need to make my own System for viewing files..???
I saw the video from microsoft teaching the techique of programming and found out they can comment multiple line and the same time.
View 2 RepliesWhat is the Microsoft Standard for Code Commenting
1. In case of Class 'Class header Comments
2. Function Comments
3. Subroutine Comments
There are different ways to comments like XML Documentation using ///
CODE:
Which Stnd should follow? May be something else other than above?
i know in java and other nice languages it's possible to comment out a bunch of lines at the same time. is it possible to do this in vb.net?
View 5 RepliesI have just comment and remove comment with the key combination ctrl + k, then ctrl + c and ctrl + k, then ctrl + u. But I think, I have pressed one time an another key. And I get the small mark in the code. What is this, and how can I get rid of it?[URL]..
View 3 Replies