Variable Declaration (Dim) And Assignment In 1 Statement?
Oct 24, 2011
I have noticed in VB.Net that most Dim statements also include an assignment. Eg:Dim myvar As String = "Hello World"As this wasn't possible in VB6 I have always done the following:
Dim myvar As String
myvar = "Hello World"
View 3 Replies
ADVERTISEMENT
Jul 15, 2009
I'm trying to assign the pattern regex looks for using an if statement like below. Then I use match to test, returning t/f from match.success. The patterns work fine, and finds what i am looking for in a test data set. The problem comes when I try to assign a pattern to test for via an if statement (assigned to SearchRegexString below) and then try to match using the appropriate object. so basically
SearchRegexString = "TestStringA"Object = new regex (pattern, options)object.match(string).success
[Code]...
doesn't work. match.success always returns false when the if then construct is used even if the phrase exists in the string. Is this a compiler issue, beyond the limits of Regex? what is going on?
View 2 Replies
Jan 16, 2012
There's error in the codes below: but I can't see what caused the error
View 4 Replies
Oct 11, 2009
I am having problems using the GetWindowRect statement I've searched many forums and used the API text viewer to obtain the declaration statement of which there are a few different versions, a couple being :
View 3 Replies
Apr 4, 2011
If I put:
variableName = namecombobox.selectedItem
or
Dim variablename as type = namecombobox.SelectedIndex
Visual studio gives me the error: "Option Strict disallows conversions from object to string.
I can fix this by putting:
variableName = convert.ToString(namecombobox.SelectedItem)
Are all values contained in a combobox automatically treated as a non-string even when they are string values (in this case "Male" & "Female") and what is the correct way of assigning the value selected in a combobox to a variable?
View 1 Replies
Mar 8, 2010
In this
Dim [end] As Point = e.Location
what is the significance of the [] 's?
View 4 Replies
Jan 19, 2011
I have the following form[code]...
and when I run my app, I get a SQL error that tells me that I need to declare a value for '@payperiodstartdate' but I know that that value is declared because the first query runs fine. I am told that the line where the error is is line 59, which is this line [code]...
View 1 Replies
May 17, 2010
I'm working on a home project using DirectShow.Net. to learn some VB.net. Most of the examples I've found have all been in C# so I'm looking through code for ideas and converting where I need to. I keep stumbling upon these declarations and I'm unsure how to convert it to a VB.Net statement.[code]Then the second part seems to be assigning the value but as its made up of two parts im unsure how that works?
View 2 Replies
Apr 3, 2011
What is the correct way of assigning the selected index's value from a listbox to a variable? The user selects an item in a listbox and then the output changes depending on their selection.
I use:variablename = listbox.text
in the listBox_SelectedIndexChanged event and this works.
When I use the button_click event I use:
variablename = listbox.selectedindex
But this does not work in the listbox_selectedindexchanged event.you let me know if it is okay to use it like I did above or if I will run into problems and why you cannot use the selectedindex method.
View 2 Replies
Feb 1, 2010
[code].....
View 4 Replies
Jan 27, 2012
wondering about the relatively efficiency of declaring oop variables in the loops, emselves, or declaring them before first use. Here are some examples:Declare early:
Dim ix As Integer
Dim currentNode As System.Xml.XmlNode
For ix = 1 To 100
[code].....
View 9 Replies
Aug 26, 2011
For i As Integer = 1 To 10
Dim j As Integer = 10
Next
now my question is, Is memory allocated to j every time its executed inside for loop? or only value of 10 is assigned on subsequent iterations?
View 2 Replies
Feb 20, 2012
im sure im mis-wording the concept but here it is anyways. I know in CSharp you can do
el.AppendChild(new UISize(file, "TSize") { CX = 95, CY = 20 });
which declares a temporary bucket variable and then assigns the associate property values to the variable. Which then sends it to the XMLElement AppendChild method. What is this design concept called? What is the conversion to VB.Net? I have tried using my own online utility that does a 90-95% conversion rate from C# <-> VB.Net. It has failed in this instance, and so need a hand-up on what i am looking to do to convert this from C# to VB.Net. I would really like to not have to do a long-declaration of a variable with assignments, if at all possible.
View 1 Replies
Apr 26, 2010
I'm making a call to my DLL file (prototyping 30+ functions), and want to be able to switch between different versions of the DLL quickly while in development. Thus, i want to replace the literal string constant that follows the "Lib" key word, with a variable string constant. In case there's any confusion in my use of the jargon. I am currently able to do this:
[Code]...
View 1 Replies
Nov 22, 2010
How could I create declaration(event) to a variable control in VB .net ? [code]please i need to know how to insert this (declaration) newweb_ DocumentCompleted it's similar to WebBrowser_DocumentCompleted but it's a variable
View 5 Replies
May 31, 2011
When I scroll down to the function shown below, and right click Analogues - go to definition it takes me to the top of the file, and lands on top of the
[Code]...
View 3 Replies
Jul 8, 2010
I was looking at some existing code and stumbled across a variable declaration I didn't understand.
public foo as Boolean?
What does the question mark signify?
View 2 Replies
Jan 4, 2011
I've been programming for many years in many languages and I've seen the variable declarations conventions change. With VS 2010 I've noticed you don't have to declare the variable type. I work alone so I can use any method I want. But, someday I may want to sell some of my code so I would like to keep my programming conventions current.
In VS 2010 which of these would be considered the best convention?
Dim srtFirstName = "Bob"
Dim strFirstName As String = "Bob"
Dim FirstName = "Bob"
Dim FirstName As String = "Bob"
View 5 Replies
Apr 21, 2010
Why are static variables set equal to 0 in the declaration when 0 would be the default value of the numeric variable anyway when it's first declared? Not including the "=0" in the static declaration seems to work with no problem.
View 2 Replies
Jan 10, 2011
Say that i have the following code that parse about 20k records from the DB.
Code #1
vb.net While reader.Read()
list.Add(If(Integer.TryParse(reader(0).ToString, 0), Integer.Parse(reader(0).ToString), 0))
End While
And then another code which does the very same thing but it seems to be a little cleaner.
Code #2
vb.net While reader.Read()
Dim storeowner As Integer = 0
Integer.TryParse(reader(0).ToString, storeowner)
list.Add(storeowner)
End While
This is what i am confused about; does the compiler creates a new variable automatically when i use the if statement without strictly declared variable? What approach is better in sense of performance?
View 2 Replies
Dec 6, 2010
I am editing in Visual Web Developer 2010, I have these pieces of code in my asmx file: <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
View 2 Replies
Mar 9, 2010
Is an implicit declaration basically an explicit declaration without the "Dim" statement preceding it?
View 12 Replies
Dec 22, 2009
E.g. how do I get VB.Net to statically type a local variable to be the static type of the expression on the right had side of the assignment?
View 1 Replies
Jun 21, 2011
I got problem regarding declaration of dynamic runtime array declaration Here is my code
[Code]...
View 5 Replies
Oct 12, 2010
I have a bunch of chart controls - Chart1 to Chart6, each chart is in a different tab control.
When a particular chart is selected I need to format the titles/legends etc.I've been using this:
With Chart1
.Series("Series1").LegendText = "legend"
etc etc
End With
View 9 Replies
May 20, 2010
I have a if then else if statement to check the value of a combo box then assign a variable depending on the combo box value. The problem is that the variable in the if then statement never gets assigned and then when I call it later in the program out side the conditional statement I get this warning. Variable 'srtype' is used before it has been assigned a value. A null reference exception could result at runtime. here is the code.
error
Dim srval As String
Dim type As String
Dim srtype As String
[code]....
View 9 Replies
Jun 8, 2011
here is a With...End With question. With variable As Type = value .property = value1 'I can access its properties Function f(.) 'syntax error, but how can I access the variable itself? End With
View 9 Replies
Oct 12, 2009
I need to assign a varible in a while clause. I.e., i would do it in php like this: while (!is_bool($char=$this->getChar()) in every loop, the function would assign $char a value, the is_bool function would test it, and the code INSIDE the while clause would have access to that $char.
View 4 Replies
Aug 16, 2011
I have a simple vb script which extracts some data from our accounting software to a text file. It works fine when I do not use a variable in my select statment as follows:
xselect = "SELECT SourceJournal,JournalRegisterNo, PostingDate, PostingComment,UserCreatedKey
FROM GL_DetailPosting
[Code].....
View 4 Replies
Mar 30, 2009
How do I fill the variable in my SELECT statement?
Private Sub TabPage2_Enter(ByVal sender As Object, ByVal e As System.EventArgs) Handles TabPage2.Enter
strTenantPin = tbxTenInfo_Pin.Text
[Code].....
View 4 Replies