Difference Between Using The 'array' Class In VB And Just Declaring An Array Like Normal?
Mar 12, 2010
What is the difference between using the 'array' class in VB and just declaring an array like normal. In other words, what is the difference between:
Dim numOfTicketsPerDay As Array
Dim intNumOfTicketsPerDay(6)
As Integer
Is there any preference of when one should be used over another?
View 2 Replies
ADVERTISEMENT
Jan 30, 2011
what's the difference between variable array and object array?
View 7 Replies
Apr 7, 2010
I have 12 checkboxes jan, feb, ..... dec i want to display the checked checkboxes into a file i know how to write in the file but the format of displaying checkboxes is as follows if i checked jan, feb,march and april then output is jan,feb,march,april here my problem is how to collect checked value in array , and how to put comma betweem them.
View 7 Replies
Sep 9, 2010
I want to reading in a excel file and extract the sCodenumber sDescription ans the sStatus and store them in a array : StatusComposeArray(5200) As MyCompose. After this I need this array for comparing outside this class. But as can you see the array is defined inside the sub: ReadingIn_ExcelFilesCompose [Code]
View 2 Replies
Jun 22, 2010
A c# class's single dimension byte array contains socket level instrument sensor data as per:
public static byte[] frameData
View 9 Replies
Mar 15, 2010
If I make the following array in a push button event and I want to put those array variables in a class array. How do I do that? I am just beginning to learn about classes in vb.net but I am having problems using classes and arrays.Is there any good tutorials on that subject.
[Code]...
View 7 Replies
Oct 13, 2010
When declaring a byte array, what is the difference between the following? Is there one, or are these just two different ways of going about the same thing?
View 2 Replies
Mar 10, 2011
I'm trying to return an array of strings from a function, and got surprised by an error.
I would have expected this to work, but it produces an error:
Public Function TestError() As String()
Return {"foo", "bar"}
End Function
[Code]....
I guess I'm unclear on the meaning of the {}'s - is there a way to implicitly return a string array without explicitly creating & initializing it?
View 3 Replies
Apr 26, 2010
I am new to VB.NET but used to write a lot of code in VB 6.
How do i declare a variable length array in VB.NET?
In VB6, i would just put:
Dim sArrayList() As String
But when I do that in VB.NET, it highlights my array name and says "unused local variable". What do I need to do to get it to work without an error?
View 2 Replies
Sep 21, 2010
I'm working on a reporting section of code for an inventory app I'm making for my office.I call a text file, read every line into an array then populate information pages with what has been pulled from the text file.For reporting, I want to read every text file in the directory, reading each one into a multidimensional array.Thus I can call and report on each item, i.e.ItemArray(i,2) would be all systems with Windows 2008 EE..I have code that lists all files in the desired directory and counts each file, so I eventually get counts of how deep I need the first level of the jagged array to be. but not until after code execution. Basically how can I write each array of data to the jagged array.[code]But I get a null reference exception. "Use the new keyword to create an object instance".
View 8 Replies
Aug 28, 2009
If I were to execute five different SQL-commands, wich of these way would be the best/most effecient?
Dim sql(4) As String
sql(0) = "SQL-string 1"
sql(1) = "SQL-string 2"
sql(2) = "SQL-string 3"
sql(3) = "SQL-string 4"
sql(4) = "SQL-string 5"
[Code]...
View 16 Replies
Jul 4, 2009
Is there a way in which I could declare an array of labels in VB 2008?
View 7 Replies
May 23, 2012
I have been wondering for a while what the difference is between the following two:
Public Property ProgressMaxValue() As Integer
Get
Return maxval
End Get
[code]....
View 2 Replies
Jan 20, 2009
It's been a LONG time since I messed with VB, and I'm messing around with VB 2008 now.I'm trying to make a custom class with three variables,
ID (String)
Title (String)
Comments (Array of String)
[code]......
View 3 Replies
Jan 28, 2010
I want to know the difference. I have given 2 lines code.
CODE:
Let me know difference between both datatype.
View 4 Replies
Jun 19, 2011
I have an array of people stored in a custom structure array... how can i copy this array to a temp array so that the temp array has all the same values as the original custom array?
View 4 Replies
Jul 20, 2010
i want to use some api's in my software . Other than api there is no other way .
I want to learn more about win32 api . Can some one tell me
And what is the difference between Native api and normal api
View 12 Replies
Dec 20, 2010
I know boxing and unboxing part in arraylist but question is if I define only string in arraylist then there is no question of boxing or unboxing. What will be the difference.
View 1 Replies
Jul 28, 2010
I am trying to create the following program Store in a 1d array a set of 5 place names and in a 2d array the distances between the places. Ensure that the order of the places is the same in both arrays. When the names are places are input the distance between them is displayed. If they are not both in the table a suitable message is displayed
Dim town(1 To 5) As String
Dim Dist(1 To 5, 1 To 5) As Integer
Dim First As Integer
[CODE]......................
I think the best way forward is pass a parameter to the function findnumber.
View 1 Replies
Oct 2, 2009
I've been working in .NET for some time now, but occasionally I still get confused by a disparity between the framework and my prior experience in C++.In .NET, all objects are either value types or reference types. Reference types are allocated on the heap while value types are allocated on the stack (in the current CLR implementation, anyway). I get that. However, at least in VB.NET, you can still define a constructor on a value type.
Public Structure Coordinates
Public x As Integer
Public y As Integer
[code]....
View 3 Replies
Jun 21, 2010
I am trying to create an list or an array of a class.Here is my "Ingredient" class that I am trying to create a list of:[code]In my "recipe" class, I am want to create a list (or array) and I am drawing a big blank on how to do it. Can anyone point me in the right direction?
View 2 Replies
Jul 26, 2011
I'm designing a small GUI Windows program that allow staff at a cinema to reserve seats for customers. There will be a total of 60 seats in the cinema. I have two classes in my program:-
1.) MainForm.vb - used for I/O actions and user interaction
2.) SeatManager.vb - used to hold and handle the background methods and functions that make the program work
Here is the code for my MainForm.vb class thusfar:-
Public Class MainForm
Private Const m_totalNumberOfSeats As Integer = 60
Private m_seatManager As SeatManager
[Code]....
Basically, when the program opens, the lstReservations list in the MainForm class will be populated with a total of 60 (m_totalNumberOfSeats) entries to represent 60 seats. Each of these seats will contain the index number from the array m_nameList; this index number (+1) will represent the seat number and then in the lstReservations list, after the seat number, I'd like it to contain the respective entry from the m_nameList array. As all entries will be held in RAM, when the GUI is opened, all m_nameList array entries will be empty. As the user uses the program, they can highlight a row in the lstReservations list and then use the GUI textboxes to enter the customer's name which will then be populated into the respective array entry.
how to, when the GUI opens, ensure that the lstReservations list takes all of the blank entries from the m_nameList array and from there, I can highlight a row to carry out further methods on?
View 1 Replies
Jun 3, 2011
I'm designing a small GUI Windows program that allow staff at a cinema to reserve seats for customers. There will be a total of 60 seats in the cinema. I have two classes in my program:-
1.) MainForm.vb - used for I/O actions and user interaction
2.) SeatManager.vb - used to hold and handle the background methods and functions that make the program work Here is the code for my MainForm.vb class thusfar:-
[Code]...
View 5 Replies
Nov 3, 2011
I have main class of Races with mulitple properties. One of those properties has been defined as another class Runners.
So I have a race with multiple runners and when I try to update the data i get an instantiation error.
For the life of me I can't get it to work.
This is what I am trying to do...
In the clsRace class I have defined :
PublicProperty clsRunner(ByVal index AsLong) As clsRunner
Get
[Code].....
View 4 Replies
Feb 28, 2012
I am New to <acronym title="Visual Basic">Vb</acronym>.Net. this is my first test. i try to create small address book. but i don't know what wrong. it compile perfect but when it run it give error and not work. is there any other way to add same class like in class inside array?
[Code]...
View 6 Replies
Jul 19, 2009
i have have a few questions about the syntax of the lan.:
1) What is the 'Get' statement and when do you use it?
2) Whats the difference between public, private, protected etc... when declaring functions and subs.
3) When would you use the overrides property?
View 4 Replies
Oct 7, 2011
is it possible to make a class I made act like an array? Or is there a better way of doing this?
Example:
Namespace Animal
Class Dog
Public Name As String
[code]....
View 6 Replies
Jul 28, 2010
I have two classes, and for a property in one of the classes I'd like to be able to load it up with an array of the other class. However my attempt at accomplishing this results in a "Object reference not set to an instance of an object" error. I know it's a rookie mistake, but I'm stumpedssist?
My code is as follows:
Namespace Parking
Public Class garage
[code]......
View 2 Replies
Aug 6, 2011
I want to include Arrary of Class in a class. For Example
Public Class AddressSet
Private addressValue As String
Private effectiveDateValue As Date
[code]....
my goal is let the user add address maximum 10 addresses under one name How do I implement "Property" to have array AddressSet using array index?.
View 9 Replies
May 8, 2012
In short, I can't seem to get the xml serializer to serialize an array of one class type embedded within an array of another class.I have two classes, one of which contains an array of the other class, as follows (there are other objects in the classes that I've not included):
[Code]...
There must be a simple way to get the XML serializer to serialize the array of the class embedded within the array of the class that I am serializing. Am I missing something?
View 5 Replies