Assign Variables Dynamically In A Loop?
Jun 20, 2009
I need to assign variables dynamically in a loop. In php you would use curly brackets but this doesn't work in vb.
Dim i As Integer
For i = 1 To 12
lblMonth{i}.text = 'whatever
Next
Anyone know how I can escape the the i variable so it becomes part of the string that precededs it?
View 7 Replies
ADVERTISEMENT
May 14, 2012
is there a way to dynamically assign value to a propertyso I have a class
Public Class RulesInfoVO
_RULES_ID As Integer
Private _RULE_PRIORITY As Integer
[code].....
View 2 Replies
Jul 11, 2009
i remember that in Qbasic i could assign values to variables from a text file. (not in the code inside.). How to make the same in VB.NET?
View 5 Replies
Jun 28, 2009
I have this string, it's "x/y". How can I use the split function to rid the / and assign the x to myVariable and assign the y to myVariable2
View 1 Replies
Nov 29, 2010
I'm working on an ASP.Net page containing a GridView, which is populated with customer orders returned by a stored procedure. What I'd like to do is dynamically change the backcolor of the GridView rows to indicate priority.
The stored procedure returns an integer indicating the records priority, I think I just need to translate the integer to a color, then make the GridView row display it.
View 1 Replies
Jan 10, 2010
I'm trying to reference an application setting from another project dynamically.
Public Function getSetting(ByVal vname)
Dim setting As New My.MySettings
setting.name= vname
[Code]....
View 1 Replies
Mar 10, 2008
I have a form with a single Report Viewer control on it. I wish to use this single form to display ALL of my application's reports. I am looking for a method that will allow me to assign the rdlc file / table adapter and rebind the datasource at runtime. I've tried various methods but cannot get it working. It sounds simple enough but is now driving me crazy!!
View 2 Replies
May 15, 2010
Is it possible to declare a variable and to choose it's appropriate type during runtime?
it should be something like this (of course, the last line does not work):
'Determine what type of variable is needed later
Dim myVariableType As System.Type = System.Type.GetType("System.String", True, True)
'Create variable with needed type
Dim myVariable As myVariableType ' Should be a string variable in this case
View 5 Replies
Jan 28, 2009
I have a class file, myClass.vb. Here is an example of the file:
Private _active As Integer
Private _categoryID As Integer
Property active() As Integer
[code]....
when I want to assign a value to the variables in the class file, should I assign them like what I have in line 24, and 25 or line 28 amd 29? how I assign the variables in terms of performance?
View 2 Replies
Feb 23, 2010
How do I read a line in a database and split and assign them into variables?As of now, i can only load the entire database into a variable
sql = "Select * from MenuDatabase" How do i read the database line by line and spit the lines according to column?
View 1 Replies
Nov 19, 2010
What is the cleanest way to assign a value to multiple variables? For example, how can I assign FALSE to each of Label1.Visible, Label2.Visible, Label3.Visible, Label4.Visible, and Label5.Visible.Is there anything like
code
Label1, Label2, _
Label3, Label4, _
[code]....
View 1 Replies
Jun 19, 2012
I've got a class where I pass in a panel reference and in that panel I'm then required to draw multiple other panels that represent my objects. The issue is that when I go to bind dynamically click events to these panels I don't have reference to the Form of which I want to popup on the click event.
The reason for this structure is so that I can redraw my class dynamically and reattach certain events to each object.
Is there any way to do this without moving my classes logic outside of the Assembly or is there any way to attach my click event to a piece of code logic to a sub in my WinForm?
View 1 Replies
Oct 16, 2010
I'm making a little program in where i'm trying to invoke a method from a class dynamically with so called Reflection.
The class I'm trying to call is called ContactList and i try to invoke the property in this class called count. The assembly itself is called Contact.Exe
Now I have the following code where I make an instance of the ContactList class in the Contact.exe assembly:
[code]...
View 16 Replies
Apr 18, 2010
I have a datagrid with customer data such as ID, name, email, phone etc.When I select a row (with a button or selectionchanged) I want to store that row's columns in variables like
dim email as string
dim name as string
email = dgCustomers.theselectedrow.theselectedcell
[code].....
View 1 Replies
Mar 30, 2012
This is my first attempt at writing a program that accesses a database from scratch, rather than simply modifying my company's existing programs. It's also my first time using VB.Net 2010, as our other programs are written in VB6 and VB.NET 2003. We're using SQL Server 2000 but should be upgrading to 2008 soon, if that's relevant.I can successfully connect to the database and pull data via query and assign, for instance, the results to a combobox, such as here:
[Code]...
How do I execute a query so as to assign each field of the returned row to individual variables?
View 2 Replies
Dec 10, 2009
Is it at all possible to declare variables dynamically? Something like Dim Answers & i As ArrayList. What I'm trying to achieve is putting one or more answers to a question into an array. Or should I really be looking at a mult-dimensional array to store the question number and answer? How would I add to and access a multi-dimentional array? Anyway, here's the section of code:[code].......
View 4 Replies
May 4, 2012
I want to monitor more than 10 folders on different machines by using SysTemFileWatcher. I create a class called Watcher for doing monitoring. So, for each folder I have to call that class once with a new thread. I want to name each thread with its own name like: T1, T2, T3 ... for easier controlling them. It is not nice if I declare each thread like:
Dim T1 as Thread =new Thread(Address of Watcher.StartWatcher)
Dim T2 as Thread =new Thread(Address of Watcher.StartWatcher)
...
Dim T18 as Thread =new Thread(Address of Watcher.StartWatcher)
How can I declare thread names dynamically with the names just like that. I have tried to use Thread array() but it doesn't work.
View 6 Replies
Dec 22, 2009
I have 12 textboxes named TextBox1 to TextBox12. How can I loop through these textboxes to assign and read the values? I.e.:
Dim strTextboxName As String
For i As Integer = 1 To 12
strTextboxName = "TextBox" & i
TextBox{i}.Text = ...... ?????
Next
View 9 Replies
Jun 1, 2010
I have a List wich contains names of all images that is going to be used in the application. I want to loop through all the pictureboxes and assign each image to a picture box. I tried this:
[Code]...
View 10 Replies
Mar 10, 2012
This seems basic but here's my problem. I am trying to build my connect string as a public variable that will connect to either an express version of SQL Server or a non-express version. The app.config defines it as being express or not and is modified to the user's choosing when it is deployed using the a firstRun routine.
The problem is that even though I'm modifying the value of the variable SQLexpress when the app is initiated which in turn should modify the value of the variable g_strConnectionString it doesn't. The value of g_strConnectionString will always take on the initial value of SQLexpress. I know I can define 2 separate variables for the connection string but I'd prefer not to have to change all of the references throughout each of the various programs in this system as they all have the same issue.
So in the following load event I've traced it and when it sets globals.SQLexpress = "", I then look at the value of g_strConnectionString and it still contains "SQLEXPRESS". It seems I need to somehow force vb to refresh this variable after it's been changed.
[Code]...
View 5 Replies
Feb 26, 2011
I have a script where I make separate routines with identical code
Example:
sub AddToA {
ATotal += 1
}
sub AddToB {
BTotal += 1
[Code]...
View 10 Replies
Dec 29, 2011
Code of my web page.I made changes according to ur suggestions but title is invisible or not displaying what has missed by me [code]...
View 1 Replies
Apr 20, 2012
So I am able to get the comboBox populated with the proper list of "clientLocations".
However they all have a valueMember of 0; thus the issue at hand is properly assigning the value of the comboBox items to the database column (which is returned in the dataset) rather than just the name.
Private Sub updateClientLocationComboBox()
'clear list
comboBox_clientLocations_deviceList.Items.Clear()
[Code].....
View 1 Replies
Sep 15, 2010
I'm trying to use variables created within a loop, but I'm not sure how to do this. I've searched around on the net and there is a few recommendations to try and put what I require into a function then just call the function.
[Code]...
View 2 Replies
Jun 21, 2010
I'll try to be brief, In short im trying to add together a variable, (name = STRFinValue) within a For loop, I think the syntax should be:
STRTotal = STRFinValue +STRFinValue(f)
But I am very wrong.
Private Sub btnLBTotal_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
[code].....
View 2 Replies
Jun 25, 2011
Sub Application_Start(ByVal sender As Object, ByVal e As EventArgs)
Dim chatters As List(Of Chatter) = New List(Of Chatter) chatters.Add(New Chatter(New Guid("CD863C27-2CEE-45fd-A2E0-A69E62B816B9"), "Me")) chatters.Add(New Chatter(Guid.NewGuid, "Juan")) chatters.Add(New Chatter(Guid.NewGuid, "Joe")) Application.Add("Chatters", chatters)
[code]....
I am unable to understand last 3 lines that are bold and underlined. Please what is hppening here. Chatter and Chat are two classes defined in App_Code folder. Is there any sight that contains all possible ways to declare and initilaze variables and data structure:
Dim chatters As List(Of Chatter) = New List(Of Chatter)
View 1 Replies
Aug 9, 2010
how would I do a loop with different my.settings variables?
ie lots of variables
My.Settings.numberofsites = 3
My.Settings.SiteDesc1 = Home
My.Settings.SiteDesc2 = Work
[Code]....
This would give me an error as there is no variable called SiteDesc.... but I actually want it to return SiteDesc1, then SiteDesc2 etc.
View 8 Replies
Mar 1, 2012
What I am trying to do is dynamically create a bunch of dropdown lists and then I want to loop through them and update the database with those values, but the problem I am facing is that I create the dropdown lists, but then when I go back to loop through them they are no longer in the panel. I don't know why but when I am debugging I have a count of 50 controls in pnlTeacherSelect right up until I press the button that calls prcChoose.
[Code]...
View 1 Replies
May 8, 2009
I have the following for each loop which loops through a registry key and reads all the values:
Dim returnValue As RegistryKey = Registry.LocalMachine.OpenSubKey("SOFTWAREMicrosoftWindowsCurrentVersionRun")
Dim keyname As String = "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionRun"
Dim values() As String = returnValue.GetValueNames
[code].....
What I am trying to have been highlighted in bold.. Each time the loop executes and reads a value from the registry, I want the code to create a checkbox which has a unique name and text according to the value that was read... So the number of checkboxes will depend on number of values that is got from the registry...But this doesn't work. It only creates one text box and the text of the textbox is also incomplete...
View 7 Replies
Oct 22, 2010
what if you created a pool of numbers: 1 - 21 and then chose a random selection from the pool? Something like the following:[code]This gets rid of those messy if statements and all of those loops.
View 1 Replies