View Single Post
Old 02-19-2006, 11:24 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,487
sde is on a distinguished road
what language?

if it's c# , or another .net language, then you need to include the namespace of that other class in your file.

then, it would depend on your class. if the class is not static, then you would instanciate the object. c# example:
Code:
SomeClass sc = new SomeClass();
we really need more info to be able to help.
sde is offline   Reply With Quote