Comment Multiple Lines Of Code/block Of Code In VB?
Jul 1, 2009How to comment multiple lines of code/block of code in VB?
View 5 RepliesHow to comment multiple lines of code/block of code in VB?
View 5 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 RepliesIs there any SHORCUT for multi lines commenting in vb.net .. Altouhgh i know there is an option in toolbar for multilines comments but i want to know a keyboard shorcut for it...
View 5 RepliesHow do I add a comment to code snippet in Visual Studio?
View 18 RepliesI want to draw three straight lines on a form. if the following code is correct:
Private Sub Form1_Paint(ByVal sender As Object, ByVal e As System.Windows.Forms.PaintEventArgs) Handles Me.Paint
Dim Line1 As System.Drawing.Graphics
[CODE]........
Can I use only one variable (Line1) to draw three straight lines?
I am attempting to hard code a richtextbox that has multiline characters upon the Load_Event. However, whenever I use the "&controlchars.newline _ " I get a syntax error and end of statement expected error.
[Code]...
There has been an Visual Studio addin created by Heslacher based on code by JohnWein which allows one to copy code in Visual Studio and paste it as HTML code block here in the forums.urls...
View 10 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 the following code, my employer wants me to reduce the lines of code to do the job.
Private Function getClientSheetNames(Optional ByVal type As String = "all") As List(Of String)
If type = "extra" Then
Return clientExtraSheetNames
End If
[code].....
I am not able to make out how can I cut the lines and have the same functionality !Are there any vb.net construct that can reduce the loc by better implementation ?Can I have a new function to be called from getClientSheetNames and getDevSheetNames that will can implement code resue ?Can I introduce polymorphism in a possible new function ?
I'm Rather new to coding, and It seems like I skipped some of the basics, and jumped in the deep end.I'm having a couple of problems, as I have an ordinary text file called "Orders", and this file stores Orders, placed by users of my program.The Users write to the Orders.txt file, 5 lines per Order, For Example :
Item Name
Item Quantity
UserName (Of user)
[code].....
I am using the given code to copy my database files...it works like a charm in debug mode but as soon as I create a setup, it stops working. The error is
"Database Detach Failed"
I tried checking the code line by line and found that the code does not enter the IF block.I have no idea why.
Public Sub bk()
Try
Dim strDatabasePath As String = My.Computer.FileSystem.CombinePath(My.Application.Info.DirectoryPath, "LIC.mdf")[code].....
Does 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 RepliesI want to get a 48 byte block of assembly code from the memory, save that code in a global array or whatever, then I wanna NOP everything from 0xF to 0x16, and write that into the memory, and then later I wanna use the global block to set it back, how can this be achieved in VB.NET?
View 4 Repliesnow if i've written a code, and then wrote that if a certain condition presents then repeat that code again including that if condition, so what is the code for this?
View 3 RepliesI have a simple question on posting to this forum: what tag to use for a code block?
View 4 RepliesI was wondering, is their any way to change a string into a line of math code. I was working on a graphing calculator project and am having trouble splicing up everything into variables and coefficient and operators. Example, having this block of code work
[Code]...
I have a script file which uses code similar to the C# language, using { and } braces to start and close 'blocks' of code. Note that blocks can be nested.[code]...
Is it possible to use regular expressions to parse the code and return the name of each block separately? So in the above example, it should return block1, block2 and block3 but NOT "block 2 contains" or "and another" (no nested blocks).
'This program is to ask for input from a customer as to the type of lift ticket desired, whether it will be for a half 'day or full day and the total number of days desired. It will then calculate the total ticket price plus a slope 'charge of $10.00, a 10% sales tax will be added to the total of both the price and charge.'The checkboxes were designed to order one type of ticket at a time, when one box is clicked the 'other checkbox dissappears. Clicking the box again resets them both to visible.[code]
View 16 RepliesI'm trying to replace text using this method:
Add each characted to a String list (List(Of String)), execute the replace function for every type of character (for example: Text = Text.Replace("A", "0AA") Text = Text.Replace("a", "1AB")), but there's a problem: it replaces the text, but it replaces those replaced characters too, so when I replace "A", it will result something like this: "0AAB AAA 0AB"... (a long text)), and then add the characters to the result string
how make the application stop and start the replacing of the next character
I'm trying to use this code block:
Dim ReturnedString As String = GivenText
Dim ListToEncode As New List(Of String)
Dim curr As Integer = 0
[Code].....
I'm wondering, is there a utility out there that will let us select a block of code and be able to replace it?
If there is none then I would want an idea on how can this be done so I could make a small utility for this task.
I have a block of code in an application I have written. I have tried two different variations.Below are examples of the method I used: [code]
The second example adds only three more lines of code. Yet, the app would run at about 10% of the speed as it would in the first sample.
I have this block of code that splits txt/csv files. It is working just fine but its a but "ghetto"
[Code]...
Well, I've read (and learned) that the finally block doesn't always execute its code (even apart from pulling the plug).FYI For more information, see try catch finally question
[Code]...
I have an interface that I've defined and am working through a bunch classes that will implement it. I'm noticing that in 95% of the implementations, I'm only changing a few lines of the code, so I'd like to know if it's possible to have my IDE generate a block of code inside of a method upon implementation, much the same as implementing IDisposable.not mark my posts as answered. It is extremely rude. You have no idea if you've answered my question.I WILL come back and mark the ones that are answers, as answers.
View 7 RepliesIt's just before while I found that expression (see my signature) is possible, so this request is not about what 'I am missing', but what I can think of. It would be nice to have named sections of code in visualbasic, which would replaced almost everything you can miss about GoTo. Imagine this:
Section Compression
For Each item ...
If Not item IsV...
[code]....
i am using vb2008: now i can find the parent window with this block of code
Private Sub Button11_Click_2(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button11.Click
Dim theHandle As IntPtr
theHandle = FindWindow(Nothing, TextBox9.Text)
[code]....
i do know how to use sendkeys, but if i use that and click on something else while i send the keys it picks up that window and trys to send the keys there thats what i dont wantnow using the top block of code along with this module how can i get the childwindow with focus on the "Richcntl" box to send text to itin a diffent click button:in this block:
Private Sub Button13_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button13.Click
End Sub
Does anyone know the code to address Logical Block 0 of a disk? This is my dump of block 0 of a multipartition disk.
[Code]....
Is it possible to skip a code block when a synclock is active?
For instance:
A object of class Bicycle is used by thread 1 and has a synclock on it.
Then thread 2 comes along and needs to know if the lights of the bike are working. But if there is a synclock active then thread 2 just forgets about checking the lights and goes to make a delicious chocolate pie.