[flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread candysmate
--- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL PROTECTED] wrote: Why do you have to use the database field names inside the flex application? What alternative approach would you suggest Paul? I use them to help me keep track of everything, as I'm using both a MS SQL database and an

Re: [flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread Paul Andrews
- Original Message - From: candysmate [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, September 22, 2007 6:12 PM Subject: [flexcoders] Re: Ek! Development grinds to a halt due to stupid syntax problem --- In flexcoders@yahoogroups.com, Paul Andrews [EMAIL

[flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread candysmate
It's actually a Sage Line 100 database if that means anything to you. Sage have now uses SQL Server 2005 i believe, but this old proprietary format that I have to work with doesn't allow for anything 'creative'. Looks like I'm hosed, unless one of you clever people can think of a way around it.

Re: [flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread Doug McCune
Multiple people have already said this on both of the threads you posted with the same question: use square brackets to reference your properties. Try: selectedItem[ADDRESS_LINE#2] And if that doesn't work tell us that it doesn't and what happens if you try. On 9/22/07, candysmate [EMAIL

RE: [flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread Randy Martin
, September 22, 2007 12:12 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Ek! Development grinds to a halt due to stupid syntax problem --- In HYPERLINK mailto:flexcoders%40yahoogroups.com[EMAIL PROTECTED], Paul Andrews [EMAIL PROTECTED] wrote: Why do you have to use the database field

[flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread candysmate
--- In flexcoders@yahoogroups.com, Stephen Allison [EMAIL PROTECTED] wrote: Are you able to use the square brackets syntax for accessing properties ? This should work if your data objects are type object or are dynamic (?) var selectedGrowerAddress2:String = StringUtil.trim(String

[flexcoders] Re: Eeeeek! Development grinds to a halt due to stupid syntax problem

2007-09-22 Thread candysmate
--- In flexcoders@yahoogroups.com, Doug McCune [EMAIL PROTECTED] wrote: Multiple people have already said this on both of the threads you posted with the same question: use square brackets to reference your properties. Try: selectedItem[ADDRESS_LINE#2] And if that doesn't work tell us