For this problem to be solved, I think you need to find out what value is getting to Access. Something is reaching Access. What is it?
On Mon, Nov 23, 2009 at 6:57 AM, stinasius <[email protected]> wrote: > > > this is what i have tried to do following your previous example... > > private var poolSelected: Boolean = false; > > public function poolselected():void{ > if(pool.selected == true){ > poolSelected = 1; > } > > else{ > poolSelected = 0; > } > } > > private function insertHandler():void{ > listManager.listProperty(poolSelected); > > <mx:RemoteObject id="listManager" destination="ColdFusion" > source="App.src.cfcs.propertyMaintenance" showBusyCursor="true"> > > <mx:method name="listProperty" result="handleStringResult(event)" > fault="mx.controls.Alert.show(event.fault.faultString)"/> > </mx:RemoteObject> > > <mx:CheckBox label="Pool" id="pool" color="#999999" width="160" > fontSize="12" click="poolselected()"/> > > > -- Chris Downey http://www.vaccine-tlc.org/ http://www.chrisdowney.name/ http://code.google.com/p/vaccine-toxic-load-calculator/

