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?
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10015182.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10194893.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10225012.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10320423.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_10773001.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_11509738.html
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...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20077787.htm...
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20093543.html
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...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20265681.html
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
...
http://www.experts-exchange.com/Programming/Languages/Java/Q_20319199.html
Zones:
JavaDate Answered: 07/15/2002 Grade: A Views: 0