yogiwales
Newcomer
OK, this is sending me crazy!
I create a class called TransactionCollection, which is a strongly typed collection, and has a sub called add.
In another class i create an instance:
dim myTransactionClollection as TransactionCollection = new TransactionCollection()
I then want to add a Transaction to it:
dim aTransaction as Transaction = new Transaction()
to add it i would normally go:
myTransactionCollection.Add(aTransaction)
but when i press the "." the menu doesnt come up, and if i type it manually it states that "Decleration expected".
I am lost. Is this a bug?? if so how can i fix it, if not what am i doing wrong?
I create a class called TransactionCollection, which is a strongly typed collection, and has a sub called add.
In another class i create an instance:
dim myTransactionClollection as TransactionCollection = new TransactionCollection()
I then want to add a Transaction to it:
dim aTransaction as Transaction = new Transaction()
to add it i would normally go:
myTransactionCollection.Add(aTransaction)
but when i press the "." the menu doesnt come up, and if i type it manually it states that "Decleration expected".
I am lost. Is this a bug?? if so how can i fix it, if not what am i doing wrong?