Advertisement

1 - 10 of 861 containing alltags:("collections") (0.001 seconds)
When I use Database.TableDefs("S S")   while S S is 2-words I got the Error:          "Item not found in this collection" What can I do?
Zones: Visual BasicDate Answered: 06/24/1997 Grade: B Views: 0
Is it true that a collection in Visual Basic can only have a length of 256 and no more? How do we overcome this limitation? I want to store objects (about 2500 in number). What is the easiest & fa...
Zones: Visual Basic, Microsoft ProgrammingDate Answered: 08/18/1999 Grade: A Views: 0
Is it possible to determine if two collections have the same contents without iterating through the items in each of them? The statement: If Collection1 = Collection2 .... generates the errr...
Zones: Visual BasicDate Answered: 10/26/1999 Grade: C Views: 0
I am trying to use Collection in my App.. Dim Numbers as New Collection. for i = 1 to 10 Numbers.Add i,i next Numbers.Count works fine.. but when I tried to do a Numbers.Item(1) it give...
Zones: Visual BasicDate Answered: 03/31/2000 Grade: B Views: 0
I have created a class. in my program i do this... dim t as new class for x = 1 to 10  set t = new class  collection.add t  set t = nothing next x 'then I try to do this: set collection...
Zones: Visual BasicDate Answered: 07/26/2000 Grade: A Views: 0
How would you dynamically read the property names of a collection? Or, reference them by some other way. Example: i=CollectionItem(1).PropertyName Is there a way to do this at all in VB?  Tha...
Zones: Visual BasicDate Answered: 10/10/2000 Grade: A Views: 0
I have several Classes that I am using on a web project. The classes are written in VBScript and access data from a database. All this works well and now I want to have a Collection of one of these...
Zones: ASPDate Answered: 02/14/2001 Grade: A Views: 0
How do I make the index of .Item property in a collection object start from 0 instead of 1. If I can't then why did MS default everything else like arrays and enums to start from 0 but collection i...
Zones: Visual BasicDate Answered: 03/18/2001 Grade: A Views: 0
I want to use a stored procedure that accepts approx. 50 input parameters and returns only one output parameter. Is there any work around that i do not have to create and append all the input param...
Zones: Visual BasicDate Answered: 02/13/2002 Grade: A Views: 0
Here is the system I am trying to model: Its a browse hierarchy for a catalog. root-    |    - Main Category 1                    |                    - Category 1                       ...
Zones: JavaDate Answered: 07/15/2002 Grade: A Views: 0