August 30th, 2004, 3:57 am
Hi,Can I call a Class Module without declaring it as Dim ABC as New XYZ? My Code looks something like this ,Function testing (i as integer,j as integer) MathOperation.sum (i,j)end functionclass module MathOperation: Function sum(x as integer, y as integer) sum = x + y end functionThanks a lot for any help in advance Amkey04