> Do you know how to instantiate System ddls? I keep getting errors when I try > either > > <cfobject type=".NET" name="image" class="System.Drawing.Image" > assembly="C:\Windows\Microsoft.NET\Framework\v4.0.30319\System.Drawing.dll"> > > or > > <cfobject type=".NET" name="image" class="System.Drawing.Image"> > > "Class System.Drawing.Image not found in the specified assembly list."
You can't instantiate an abstract class. Think of Image as being somewhat analogous to an interface in AS3. But in general, if you have a non-abstract class in System.*, you should be able to instantiate it without specifying an assembly path as it'll be in the Global Assembly Cache. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ http://training.figleaf.com/ Fig Leaf Software is a Veteran-Owned Small Business (VOSB) on GSA Schedule, and provides the highest caliber vendor-authorized instruction at our training centers, online, or onsite. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:338849 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

