RE: [flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-10 Thread Gregor Kiddie
You want to read up on the following articles http://livedocs.adobe.com/flex/3/html/help.html?content=modular_2.html http://livedocs.adobe.com/flex/3/html/help.html?content=modular_2.html http://blogs.adobe.com/rgonzalez/2006/06/modular_applications_part_1.htm l

[flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Thanks Gregor Kiddie, RSLs are only really useful if you are making two or 3 different products and want to share the code between them. For a single product, they offer no discernable value. We actually removed RSLs from our product because they were impacting run-time performance.

RE: [flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread Gregor Kiddie
Sounds like one of your DLLs is roughly equivalent to a module in terms of what you want to deliver. Just remember that each Flex module is based off a single mx::Module, so if you want to package up several forms in a single module, you'll need to load the module and then swap the forms on that

[flexcoders] Re: Modules and RSLs Which is Better for Large Database application

2009-04-09 Thread raja_s_patil
Thanks Gregor Kiddie, Sounds like one of your DLLs is roughly equivalent to a module in terms of what you want to deliver. Just remember that each Flex module is based off a single mx::Module, so if you want to package up several forms in a single module, you'll need to load the module