Declaration Of Variables In2010
Jun 7, 2012
I am creating a kind of a "naive" search engine.What I have done is distributed words in files where each file corresponds to the starting letter of the words (i.e. if its English, then 26 files are there)Then when the search system loads I am loading all the words in hash tables (26 hash tables corresponding to 26 alpha-characters) for which I am using an array of structures.The problem is after declaring the variables in a Form load subroutine, the variables are not able to use those values in other subroutines..How do I properly declare them so their values persist?
View 1 Replies
ADVERTISEMENT
Jan 22, 2011
I have several classes that use a bunch of strings for directories, arguments, etc.
At the moment, they're all just declared globally within the class like so:
VB.NET
Private str1 As String = "path"
Private str2 As String = "path2"
Private str3 As String = "arg"
To me, that looks awful and doesn't seem like the proper way of doing things. So, I was thinking, should I make a property for each string and then use a constructor to initialize them?
Would that make a difference at all? Is that the proper way of doing things?Also, some strings are used in a ton of different places and they're basically just being copied from one class and pasted into another. So, do you think I should do what I suggested above, but with a class whose sole purpose is to house those strings so that the code isn't duplicated a million times everywhere? Would that be the most efficient way of doing things?
[Code]...
View 8 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
Jun 21, 2011
I got problem regarding declaration of dynamic runtime array declaration Here is my code
[Code]...
View 5 Replies
Dec 11, 2011
Last year (2010) I came across a FANTASTIC command that allowed me to take a string of variables with a common delimiter and break it all back out into separate variables (possibly an array) with one statement.
[Code]...
As long as the delimiter was a unique specifiable character, this one-statement command could break it out into elements. my memory and point me in the right direction.
View 2 Replies
Sep 27, 2010
I have code, shown below, that works all except for 1 thing: The variables being passed byRef get passed, but once modified in the else section of the "if me.invokerequired" code of RecordData, the variables are never updated in the calling function. To reiterate, the calling function does not receive the updated data that is in the variables custid and amt.When debugging, I see the data change in the else section of "if me.invokerequired", but once it returns from the callback the data is missing.[code]
View 15 Replies
Mar 23, 2012
I define some global variables of a class as follows:
Private Class MyClass
Private var1 as Decimal
Private list1 as List(Of string)[code].....
But I found that after this form is closed, all above variables, var1, list1, list2 still exist in memory. I thought they should be collected by gc since the form is already disposed as I confirmed.
Add: I have monitored half an hour after the form is closed. But these variables are not collected by gc. I have an automatic update procedure on the form which uses above variables.Since the above variables still hold values, the automatic update procedure is always called which causes exception. (One quick fix is to check if form.isDisposed in update procedure. But I do not think this is elegeant. Besides, these variables occupy memory.)
View 2 Replies
Jan 7, 2010
Does the memory used in declaring variables are reclaimed by the OS when these variables go out of scope?Does the memory used be released by setting thier value to nothing? if not, then how can I force the garbage collector to run or excecute at a certain/desired time..How about in Windows Forms..How can we make sure that the memory used in initializing and showing forms be released if those forms were closed?
View 13 Replies
Mar 8, 2011
Question 1: What is the difference between "Background Worker" and "Worker Pool" as indicated within the MSDN samples provided.
Question 2: I noticed while using, AddressOf _Function_, variables cannot be passed; what would be an efficient solution to this?
Question 3: While using multithreading is it required to invoke before setting variables, or only form properties?
Question 4: While using System.Net.Sockets is it safe/efficient to use Application.DoEvents while waiting for new data; or would be using a Do While loop be fine without DoEvents since the action would be multithreaded? Note: there can be up to 2000-3000 sockets in use at a time.
View 10 Replies
Jun 9, 2012
I'm new in .NET programming.I have a class Form1 that includes Button1_Click event.Button1_Click creates a multiple Text Boxies at run time)Here is the class:
Public Class Form1
Dim shiftDown As Integer
Dim counter As Integer
[code].....
View 3 Replies
Feb 26, 2009
How can rightfully declare these in VB.net , in my coding it's highligted errors on these declaration.
Dim excel As New Microsoft.Office.Interop.Excel.ApplicationClass
Dim wBook As Microsoft.Office.Interop.Excel.Workbook
Dim wSheet As Microsoft.Office.Interop.Excel.Worksheet
View 1 Replies
Jan 19, 2011
I am currently working on VB. I am using Visual Studio 2008.
The piece of code below is a console application which builds without any error.
Imports System.Net
Module Module1
Public Sub Main()
[Code]....
View 1 Replies
Aug 6, 2009
I was told to use this to specify a folder that I want my node to go to.
(Declaration)
<ComVisibleAttribute(True)>
Public Enumeration SpecialFolder
(Usage)
Dim instance As Environment.SpecialFolder
View 2 Replies
Mar 8, 2010
In this
Dim [end] As Point = e.Location
what is the significance of the [] 's?
View 4 Replies
Dec 16, 2009
What is the appropriate declaration such as "ValueChanged" or "Click" for a NumericUpDown that will execute the code when I press enter. I already know that setting the "AcceptButton" property of the main form to a default button will not work, especially if I want a different button to be selected depending on which control I give focus.
PS: Is the syntax any different from Visual Basic 2010 Express than it is on Visual Studio 2012 RC (running in Visual Basic Mode)?
View 1 Replies
Apr 22, 2010
This is some homework material[code]...
View 9 Replies
Sep 15, 2010
Question: How to shorten this array creation ? I need to create an array of type ReportingService2005_WebService.Property with one property.
Something like:
Dim PropertyArray() as new ReportingService2005_WebService.Property(1)
I have to do this:
Dim PropertyArray As ReportingService2005_WebService.Property() = New ReportingService2005_WebService.Property(0) {}
PropertyArray(0) = New ReportingService2005_WebService.Property
[Code].....
View 1 Replies
Jan 5, 2009
For some reason when i declare an array and set it to a certain amount of elements then under it specify the elements it works in VB 2005 but when i do it in VB 2008 it get : "declaration expected " and i get words underlined.
Public Class Form1
Dim words(20) As String
words(1)="Computer"
End Class
Let me know how to do this in 2008!
View 8 Replies
Aug 30, 2011
Currency Declaration in vb2008.
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
Jun 30, 2010
A "declaration expected" error occurs when attempting to use any of the MY objects. What declaration needs to be made?
View 4 Replies
Jul 6, 2010
Does anyone know of a working declaration for the API "AccessibleObjectFromEvent"? Or a good .net equivalent? I've spent so much time getting the other main Accessible API to work on .NET, that I'm hoping to start with a good declare on this one.
I've built a really good narrator, for totally blind people so that they can interface and use the computer in a substantial way. The innovation is a static mouse that controls category input, rather than free mouse movement, and the middle wheel selects items of that category. But I need the last access API for events and voice feedback when the event occurs. I'm guessing it's something like this, according to what works for the other API: Code:
This is loosely based upon microsoft Access example written in vb6, available as an online download. I've have not seen a .NET example online, so it might prove useful for someone.
View 3 Replies
Apr 15, 2011
how to solve the error message " ConfigurationaManager not declared" when used to connect to database here is the line of code which gives the error
SQLConnStr= ConfigurationManager.ConnectionStrings("SQLConnStr").ConnectionString
View 1 Replies
Aug 23, 2010
I need to Dim lblFilePath. As what do I Dim it, String dos not work. This might not makes sence to you,
[Code]....
View 8 Replies
Dec 15, 2009
Declaring Varibales where to put the declaration.
View 3 Replies
Mar 4, 2011
One would think I'd already know this, but I never really gave it much thought before now. When declaring a member variable for a class, is it better to set the default value at the declaration
Private m_strMyVariable As String = ""
Or is it better to do it in the constructor
Private m_strMyVariable As String
[Code]....
Should I maybe always specify a value at declaration, even if it's Nothing, and just override that value in the constructor(s) as needed? Or is it situation specific? If so, a really quick rundown of which situations might warrant which treatment would be nice.
View 4 Replies
Jul 21, 2011
The Param1 works but param2 failed when passing it to method with object array parameter
Dim param1() As Object = {5, 5}
'And
TextBox2.Text = "5,5"
Dim param2() As Object = TextBox2.Text.Split(","c)
RichTextBox2.Text = CType(InvokeDllMethod(bt, "kayTestDynamicAssembly.KayTestDLL", "Addup",
param1), String)
My main question is that does .NET treat those 2 declarations differently or maybe I am missing something?
View 3 Replies
Jul 31, 2009
I'm trying to declare a generic using a variable of type System.Type, with VB 2005, and haven't found the right approach. Consider the typical:
Dim m_GenObj As MyGenericObject(of T)
Instead of using "T" I want to use a variable of System.Type, for something like:
Dim m_MyType as Type
Dim m_GenObj as MyGenericObject(of m_MyType)
But of course that doesn't work.
View 2 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
Oct 30, 2010
I am using Visual Basic Express 2008 to make a simple game. I am trying to declare a dataset object and datatable but I'm getting a bizarre syntax error and I can't find a help reference.
Line A - I dimension GameTable as an Object
Line B - I instantiate the object
Line C - I edit data in the GameTable
Line D - I display the data in Visual Basic
Line C will crash in runtime if I don't do sometype of "New" declaration
Line B is my attempt at a "New" Declaration by I get an error message I don't understand - "Type Expected" - I think I have the syntax wrong here.
[Code]...
View 9 Replies