0
votes
2answers
54 views

Different ways of declaring arrays in VB.NET

In VB.NET, is there any difference between the following ways of declaring arrays? - Dim cargoWeights(10) as Double - cargoWeights = New Double(10) {} ' These are two independent statements. They ...
0
votes
0answers
32 views

Index Outside Bounds of Array due to 4 digit ID

I am using VS2010 and VB.net 2.0. I have modified code that I found online that will allow me to mass update a gridview. The datakey for the gridview is an operator number (referenced by variable ...
0
votes
2answers
21 views

Trying to accomplish similar functionality of .contains on an array of string using substring

I have an array of directory paths: Directory.GetFiles(uploadPath) I want to check this array to see if a file exists in one of the file paths. After looking at some of the similar questions on SO, ...
-4
votes
2answers
39 views

Code that will loop through an array of sales figures and calculate the total sales [closed]

Code that will loop through an array of sales figures and calculate the total sales. The annual sales should be outputted to a messagebox and the answer should include structured exception handling ...
0
votes
1answer
64 views

A string() as columns for SQL table

I have a csv file that I read in and I create it into a string(), now I want to input all of these into an SQL table. It should become something like this: TIME string(0) string(1) string(2) ... ...
0
votes
0answers
36 views

Fill datagridviews from stored querys on arrays

I hope you can help me. I will be as accurate as I can. This is my code: Dim productoArray = New List(Of Products)() ' <-- global ' --button method--- Dim db2 As New ConeccionANextelDataContext ...
0
votes
0answers
49 views

Count instances of first array in second array and return third array

I have two arrays of strings, but for demonstration purposes I will use letters a-e: {a,b,c,d,e} {a,a,b,c,c,c,d,e,e} I want to count instances of each element in the 1st array as elements in the ...
0
votes
1answer
35 views

How can I compare 2 arrays creating a new array with the changes?

I am reading the CHAT from an application with readprocessmemory which I want to monitor for events. Attach() 'attach to process Dim chatStart As Integer = &H6E3220 Dim lines As ...
0
votes
1answer
20 views

Changing Label backcolour if a record is in a database (Visual Basic Express 2010)

Been following a question on this site to try and change the label backcolour is visible in a .mdb database, using SQL to connect VB.Net with the Database. I have a seating plan set up as a grid in a ...
0
votes
2answers
55 views

Compare two ArrayLists

I am trying to compare 2 ArrayLists without success. What I have is this: Dim array_1 As New ArrayList() Dim array_2 As New ArrayList() Dim final_array As New ArrayList() In array_1 and array_2 I ...
0
votes
1answer
30 views

Obtain the list of open ports, windows firewall

I am trying to develop a code that manages the firewall ports using vb.net. The first part is to list all ports enabled. so I am trying this code: Function portsList() Dim ports As ...
0
votes
3answers
39 views

Stuck substring in vb.net

In Example, i have string as the following: [oledb] ; Everything after this line is an OLE DB initstring Provider=SQLOLEDB.1;Password=123456;Persist Security Info=True;User ID=sa;Initial ...
0
votes
1answer
36 views

Check state of checkboxes in an array - runtime error

I want to run one block of code when any of the 197 checkboxes on the form are clicked. I have all of the checkboxes in an array which I used to check the availability of each seat on the forms load ...
0
votes
1answer
43 views

Will not display in list box VB

So, I'm trying to display the statistics for a soccer teams points scored. At the time this is being executed, the arrays have been already filled and what not. When this form opens, I'd like it to ...
0
votes
1answer
42 views

Objects within Arrays, and changing their properties

This program is a seat booking system and I am having problems when checking the availability of each seat. When the form loads, an array is created and stores the seat names in. Each seat is a check ...
0
votes
1answer
43 views

Using listbox to access 2D array VB

So I am trying to use a listbox to access variables in my 2D array. I am unsure what is the best way to do this. Right now I am using the selectedindex of the listbox to access it but I am only ...
-1
votes
1answer
38 views

VB How to pass a multidimensional array to and from an Active X control

I have a multi-dimensional array named OPIMG(2000,2000,10)as long, this contains sets of image data (16bit greyscale images as data for use within the user control) which I create on the main form. I ...
0
votes
2answers
47 views

vb.net Datarepeater, Dataadapter, Dataset, SQL How to break up line by line and insert into repeater

Edited Code : the code from before works great but cannot change the textbox.text properties or display them fro each of the controlls added by this loop any help is appreciated some sub Dim ...
-1
votes
0answers
41 views

How to save a 2 dimensional array in an Access database [closed]

I have a 2 dimensional array of dimensions 400x400 of single type values. This is for vb.net, windows form. How can I save this as a field in an Access database record? What type of field would I use? ...
0
votes
1answer
35 views

Compare Images In 2D Array Of PictureBoxes

I have a bit of code here (2D array of pictureboxes) that checks if an image belonging one row down from the selected index is equal to My.Resources.NONE. It then performs an image swap between the ...
0
votes
1answer
17 views

String ToCharArray with multiple labels

I have 9 labels that are to contain 1 letter each from a text box called txthidden. And when i click on a button button3, the labels are meant to show up with the different array of letters. My ...
0
votes
1answer
42 views

How do I arrange a list that includes a string and integer in vb.net?

Okay, so I have a list of Highscores for my program which is kept in a text file, but I need to arrange them in ascending order. Here's the coding that I've got so far for it: WinnerName = ...
2
votes
1answer
54 views

Remove duplicate items from processes array using VB .net

I have to code to get all accessible process, but I need to remove duplicated items on this array and show only one time each process. How is the best method to do this, because I think processes ...
0
votes
1answer
33 views

sqlParameters Array in VB.Net

I'm trying to create a typed-sized parameters array in VB.Net: Dim parameters() As SqlParameter = New SqlParameter() _ { New SqlParameter("@first_name", SqlDbType.VarChar, 50) ...
0
votes
2answers
30 views

Display content of the array/list

I'm looking for a way to display (in the MsgBox or other read-able place) the array/list content, the list contains only strings: Dim list As New List(Of String) I would like to display the content ...
0
votes
0answers
25 views

Structure Group Arrays

I'm having a frustrating time implementing my structure group with an array to handle the inventory of specific cards into a multiple players inventory's. 'Declaring Array Variables Friend ...
0
votes
3answers
84 views

vb.NET Arrays - Turning a String into a Table

I am working on a windows form application, and I have it reading a text file that has information stored in the form of a table. It looks somewhat like this: ID Name URL 1 client1 ...
0
votes
1answer
24 views

How do you append on array to another?

I'm writing a function to check for multiple file extensions in a folder, and then return the matching file names, but I am having a problem returning the results. The function 'works', but obviously ...
0
votes
2answers
37 views

why do the values of array change?

Consider the code below in VB : Dim speed() As Integer = {0, 1, 2, 3, 4} Dim speed2() As Integer speed2 = speed For i = 0 To UBound(speed2) speed2(i) *= 2 Next Dim ...
-1
votes
2answers
47 views

Int array in vb.net

I have this int array: 0,1 0,2 0,3 0,4 1,5 1,6 1,7 1,8 etc What I need to do is to make a function that gives me an array that is something like this 0,1 0,2 0,3 0,4 It returns all the results ...
1
vote
2answers
33 views

Arraylist on FORM 2 put into an Listbox Form3

I have got some code that gathers all textboxs and stores them as an arraylist, then all combo boxs stores as a second list, this is "working" however it seems to be putting box's 2-10 from top to ...
0
votes
2answers
39 views

Getting information about installed fonts

I want to retreive information of installed fonts, I've tried by this way: Private Function Get_Installed_Fonts() As Array Dim AllFonts As New Drawing.Text.InstalledFontCollection ' Get the ...
4
votes
3answers
114 views

Starting Index of Arrays in C# and VB.Net

Have a look at the following code., C# string[] testString = new string[jobs.Count]; Equivalent VB.Net Dim testString() As String = New String(jobs.Count - 1) {} Why it is taking 'jobs.Count - ...
1
vote
1answer
34 views

Can I check which section a string came from in an array?

If I have an array like Dim list As String() and list is read from a file with list = Split("filehere.txt", ",") and I use something like If list.Contains("string") then code here End If can ...
0
votes
1answer
35 views

data to structure in vb.net

I have this structure in Visual Basic .net Private Structure queueT Public name As String Public parent As String Public limitat As Integer Public maxlimit As Integer ...
0
votes
2answers
87 views

String split in vb.net

I'm new to Visual Basic .net and I would like some help doing this: I'm receiving these strings: ...
0
votes
1answer
48 views

How to work with the string class in VB: subStrings

Was not sure the best way to word this question.. This question was before I implemented Data Integration Services, but for the sake of knowledge- I had data from an Excel spreadsheet that needed to ...
0
votes
1answer
62 views

How to call all members of a picture box array?

I'm making space invaders, and I'm using arrays for the first time, I have yet to learn them in class so I'm kind of free-balling it. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal ...
0
votes
1answer
59 views

How do I convert this VB.NET array expression to C#

In VB.net, I can write: If {"red", "blue"}.Contains("blue") Then Return True and the Contains seems to be from Linq.Enumerable(Of T). I'm having trouble converting it to C# - when I use an online ...
0
votes
2answers
50 views

VBA arrays and Operators

I am trying to write a couple lines of code in VBA for excel, here is what the VB.Net version of the code looks like. ThisVariable <<= 8 Variable.Add(ThisVariable) How do ...
2
votes
1answer
90 views

Truly drawing cards at random, and not just a random group? visual basic 2010

I realized a flaw on my coding for picking cards from my structure group arrays this morning for a tabletop card game I'm converting to computer. Currently the code is set up to randomly pick an array ...
0
votes
1answer
106 views

Vb.Net instantiate a Property of a class that is a an array of a different class.

This is for the purpose of Serializing and Deserializing an Xml object <XmlRoot("orderadd")> <Serializable()> _ Public Class clsSMsgRequestMessage <XmlElementAttribute()> Public ...
0
votes
0answers
24 views

in VB Trying to create an Array of Properties

I'm trying to Create an Array of Properties. To simplify my problem I created a mini project Project: I have 3 shapes, which change color and number when I press the button. I have created a class ...
-2
votes
1answer
61 views

My Program breaks randomly [closed]

My program randomly decides to quit working. No Error messages, just pressing the play buttom with nothing happens, and I check my card summary to find that The QuantityInteger to a corresponding ...
0
votes
4answers
95 views

Regular expression for splitting a string and add it to an Array

I have a string which is in the following format: [0:2]={1.1,1,5.1.2} My requirement here is to split the values inside curly braces after = operator, and store them in to a string array. I had ...
1
vote
1answer
109 views

Store directory and its files in a two dimensional array VB2008

I have a folder structure like below. I want to store the directories and the files inside it.... in an array. I have done storing the directories in an array but i am uncertain if i am storing its ...
0
votes
1answer
76 views

Making every variable in this code Dynamic Visual Basic 2010

Sorry for the long piece of code. In a game I'm designing, I have this code starting at the checkbox.checked if statement currently repeated 5 times for each checkbox clicked--each checkbox is equal ...
1
vote
1answer
214 views

VB.Net - Excel application get showing values of an range

I'm trying get an Excel Range and copy into an array of objects with Vb.Net. This is not a problem. I use the following code: Dim vValues(,) As Object = ExcelApp.Range(vRange).Value And works ...
0
votes
1answer
45 views

Is it possible to dynamically enumerate all arrays in VB .NET?

I have a lot of arrays in a web module I'm writing and I will be adding more as time goes on. I would like to dynamically enumerate all arrays to search and update them. Is this possible? Snippet ...
0
votes
1answer
86 views

Convert MyList(,) of Object to String array with LINQ

I have a little problem with the performance of one of my applications, basically: An external system gives me a big structure as an Object(,). This structure only has an column per row. ...

1 2 3 4 5 10