Im trying to make an array of objects in CFMX. This array will be a 2 dimensional array. My problem is that I dont know how to access the elements of a 2D array using CFOBJECT and Im not sure how to specify the creation of a 2D array in the constructor method. Here is what little I know:
<cfobject action="create" type="Java" class="java.lang.Object" name="myObject"> <cfset searchObject = myObject.init()> I'd like to be able to do: <cfset searchObject[0][0]= "some number"> <cfset searchObject[0][1] = "some text"> Basicly Id like to make multi dim arrays of any type using CFOBJECT, any thoughts would be appreciated. -Ahnu ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

