Using two Classes

Newbie Member
10Dec2007,16:42   #1
ASP-Novice's Avatar
When I write the code
Code:

Code:
Set a = new C1
   Block of code
Set a = Nothing

Set b= new C2
   Block of code
Set b = Nothing


The Class C2 doesn't work. Any idea Why????

CB
Go4Expert Founder
10Dec2007,18:15   #2
shabbir's Avatar
There can be numerous reasons for this but I will try to tell some

1. You don't have the class
2. You have the class but its not imported correctly.
3. You have missed the reference.
4. You have the using statement not correctly written.