IDE :: Change Value Of Variable In Loop During Runtime?
Jan 26, 2009
I'm multiplying X*Y*Z in a loop of 200 interations Y is declared as a constant. A timer can cause the loop to pause for 10 seconds.
During this 10 sexond pause I would like to change the value of Y. It needs to be changed only for this run, not a permanent change which can be done in the declaration.
View 1 Replies
ADVERTISEMENT
Sep 7, 2011
here is some simple code:
0: dim varA = 0
thread.sleep(1000)
GoTo 0
I was wondering how do I name each new variable a different name each time through the loop (i.e. varA1, varA2, varA3)
View 8 Replies
May 25, 2011
im using many variables in my project however, they are most of the time used for 1 or 2 things, so having them loaded up like that forever sounds not very good for performance.Is there a way i can remove a variable after i no longer need it?
for example:
private sub button1_click() handles button1.click
dim result as integer = var2 + var1 / 2
[code]....
View 33 Replies
Oct 6, 2010
I'm trying to populate some file dependant settings from the database. Values I can add no problem but how to set the names as they differ from datafile to datafile?
For Each myRow In SetModDataTbl.Rows
Dim SettingName As String = myRow.Item(1)
Dim SettingValue As String = myRow.Item(2)
'>> SettingName = SettingValue <<
Next myRow
View 1 Replies
Jul 12, 2009
How do you add an arbitrary number of controls to a form at run time? With indexed controls I could define the 'seed' control at design time and reference 'clones' of the 'seed' control at run time via the index. Now I must declare each additional instance of the control at run time then set each individual property that differs from the default for that control for each instance. Then I must add the newly declared control to the appropriate container controls collection. I'd like to do this in a loop but how can I get away from using a fixed control name in the declaration:
Dim controlname As New Control
I can't use a string that I can manipulate the contents of for controlname because it sees it as a double declaration. I can't use an array such as Control(index) for controlname. Dim Control(maxindex) As New Control doesn't work. Dim Control(maxindex) As Control works but any assignment based on this such as Control(indexvalue).Name = "ControlName" fails. It didn't address the issue of handling the declaration of new controls in a loop with some kind of variable name for the control.
View 1 Replies
Jan 15, 2011
In Visual Studio 2010 is it possible to check the state of variables during run time. When a run time error occurs the error is highlighted and you are able to mouse over different variables to see their values when the error happened. I would like to do something similar except without the error.
View 7 Replies
Oct 30, 2009
I am trying to create a number of objects depending on the width of a row of an array, is there a way I can change the name of the variable being Dim 'd as I don't know how wide the array will be.
I have been trying something along the lines of:
pseudocode
For x as integer = 0 to UBound(MyArray,2)
Dim Object & CStr(x) As Object Type
Next
View 3 Replies
Jul 16, 2009
global variable can be created during runtime?
View 1 Replies
May 14, 2009
I have a third party dll. I wish to create a variable to reference to one of the variable in it.so that the value in the class change, my value also change. The senario can be reproduce from the code below.For the code below i wish to get the form to display 2 instead of 1. How can i make my variable test2 always referencing test.testValue?
View 11 Replies
Feb 9, 2011
The code below works for the class that I hard coded "XCCustomers" in my RetrieveIDandName method where I use CType. However, I would like to be able to pass in various classes and property names to get the integer and string LIST returned. For example, in my code below, I would like to also pass in "XCEmployees" to my RetrieveIDandName method. I feel so close... I was hoping someone knew how to use CType where I can pass in the class name as a string variable.
Note, all the other examples I have seen and tried fail because we are using Option Strict On which disallows late binding. That is why I need to use CType.I also studied the "Activator.CreateInstance" code examples to try to get the class reference instance by string name but I was unable to get CType to work with that.When I use obj.GetType.Name or obj.GetType.FullName in place of the "XCCustomers" in CType(obj, XCCustomers)(i)I get the error "Type 'obj.GetType.Name' is not defined" or "Type 'obj.GetType.FullName' is not defined"
'+++++++++++++++++++++++++++++++
Imports DataLaasXC.Business
Imports DataLaasXC.Utilities
[code]....
View 2 Replies
Nov 16, 2009
Im looking for help with trying to vary a variable-name in a for loop:
For b = 1 To Count
' the below image_var(b) varible needs to vary on each iteration'
Dim image_var(b) As New LinkedResource(Server.MapPath(myArray(b-1)))
' need also to have the b in myArray(b-1) bit work through the loop too'
' that is I''m after the array index b minus 1'
image_var(b).ContentId = "imageContentId_" + b.ToString
[Code]...
View 3 Replies
Jan 23, 2012
I have a list with several fields that is created from dataset from a linqtosql query. At run-time, the user gets to specify what field he/she wants to display from the list. In other languages, I can dynamically do this like:
valueIwant=mylist(i).[fieldnameImInterestedIn]
Where 'fieldnameImInterstedIn is itself a variable. How do I do this in VB.Net?
non-working actual code follows:
Dim patientdata = (From patientvar In pdfdatacontext.tbPatients Where patientvar.PatientID = patientid)
Dim patientlist = patientdata.ToList()
fieldvalue=patientlist(0).(reportrow.userselectedfieldname)
View 1 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
Oct 26, 2009
I'm writing a simple program to "change" a login. I need to know how to create a variable that lasts past when the program is closed (so the changed login stays and is not reset). Here is my code:
[Code]...
View 11 Replies
Sep 30, 2010
Is there any way to access your variable names at runtime? Is there any kind of collection you can loop through?
View 2 Replies
Jul 15, 2009
What type can i assign a for loop control variable? I want the for loop to be the output file of a calculation, but i can not define it as anything, and i do not know how to write it so that the output is actually what the code spits out once the code has finished running.
[Code]...
View 3 Replies
Feb 23, 2010
this is my code -
for i as integer = 0 to rows.count - 1
output &= "Name =" & row(i)("Name")
output &= "lastName =" & row(i)("lastName")
[Code]....
is there a way to make a for loop and run applicant 1,2,3,4.... in one shot?
View 3 Replies
May 10, 2012
I'm working in VB.net and I want to create a generic ToString. is there a way to do a "For Each" in "Me".
[Code]...
View 1 Replies
Jul 11, 2009
i have a program that is going to be disabling services depending on what is selected by the user via check boxes, and it would also add to the log if it failed or succeed ( the dim xfailed as integer ). There are a total of 73 options for services and i didn't feel like copy and pasting IF THEN statements for all 73. I was wondering if i could make a loop out of this?
The x would be the service name - ex. "Themes"
Dim x as serviceprocess.servicecontroller = new serviceprocess.servicecontroller(x)
dim xFailed as integer
Try
[code]....
View 8 Replies
Sep 29, 2011
I am trying to create new variables inside a class after creating its object at runtime. The problem is that I don't know the variable names or the value beforehand so I have to create the new variables at runtime.
[Code]...
This is a more elaborate explanation of my code. If you observe that in the Eval function I have tried to evaluate Fval(abc). Now the object array abc is not declared in the Test class because it existence is not known beforehand. What I want to do is create an object array abc of length 2 and populate it with some values and when Fval(abc) is called then then the value of index 1 should be the return value of Eval fucntion.
View 2 Replies
Jul 26, 2010
I've got some code that looks like this:
If ediFileGroupAbbr = "NIPDSINV" OrElse ediFileGroupAbbr = "WWPDSINV" Then
Dim p As New PrivateBillingAdapter_ForN(ediFileGroupAbbr, businessLocationID, mode, EDIJobItemLogID, BusinessUnitID)
Return p.ProcessEDI(True, False)
ElseIf ediFileGroupAbbr = "FOPDSINV" Then
[code]...
to which I'm passing in a value of ediFileGroupAbbr = "FOPDSINV". But the code is executing as if it's dropping into the third condition (p is a PrivateBillingAdapter). So I've stepped into the code and, sure enough, it drops into the second condition. BUT, if I step into the execution of the constructor, the debugger jumps to an odd place in the code - sort of the middle of a method and not on any actual line of code.A couple clicks and it hops back out of the constructor, still in the second block of code. But if I mouse over the variable p to see it's type, boom, its a PrivateBillingAdapter (from the third block).Like I said, something is clearly wrong but I don't know what. I've tried rebuilding several times but with no new results.This is VS2003, framework 1.1 with VB.NET.
View 1 Replies
Dec 31, 2009
What i am tring to do is execute certain code based on a variable held in a module someting like compiler directives, here's an example for lack of an explanation.[code]...
View 2 Replies
Nov 19, 2009
The subject almost sums this up. I have dimensioned a variable 'y' inside a for loop. If i then try and access this outside of the for loop I cannot. What is the reason for this and how can I correct it? Unfortunately I am not able to Dim the variable 'y' outside of the for loop.
View 1 Replies
Nov 1, 2011
I have a mvc 3 vb.net app that I need to generate several viewbags for... I tried the following code to just drop a variable at the end of the viewbag name after each loop but it wont take it.. It says "Object variable or With block variable not set." when it his the viewbag.status(p) line on the second pass it makes through the loop...
Dim p As Integer = 0
For Each registrant In b
Dim _regi As attendance = registrant
[code]....
View 2 Replies
May 14, 2009
Is it possible to define two variables in a vb2005 For loop in a similar way that jscript does it?
the javascript example is
for(i=0,l=0;i<20;i++){}
View 1 Replies
Mar 30, 2010
Using VB.NET .NetFramwork 3.5. This fails and strikes me as odd. Is this correct behavior:
Public Sub TestForEach()
For index As Integer = 1 To 10
Dim z As Integer
Assert.AreEqual(0, z)
z = index
Next
End Sub
I would expect z to always equal 0 as I thought the dim-ing of an integer would set the value to 0. If you run this. It fails at the second loop. For some reason z retains it's value of 1. I know I can manually initialize z to = 0, but I wanted to know if this is a bug or expected behavior.
View 9 Replies
Jan 12, 2010
I have a button that searches through a binary file to bring up customer information with the following code:
[Code]...
My problem is, I need to create a variable which holds the record number, so that the record can be edited, and put back into the file at its previous location, how would I implement this? Not sure about the code.
View 3 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
Mar 13, 2012
sir, i have no idea how the code will look, but i want it to assign a value after reading from a text file and then store it for further use even if the text file is not there, but without using any external storage like registry, disk, ram. It should store the value in itself and do like this:-
dim variable1, variable2 as string
if file.exists("text.txt")
read the text
[code].....
View 2 Replies