Re: Re[2]: [fpc-devel] LocalReferenceFixup

2010-10-08 Thread Mattias Gärtner
Zitat von José Mejuto : Hello FPC, Friday, October 8, 2010, 1:41:39 PM, you wrote: Creation order -- 1) Create main form MS> application.createform() or t*form.create() 2) Create data module MS> application.createdatamodule(); 3) Wait in main form for user input 4) Create se

Re[2]: [fpc-devel] LocalReferenceFixup

2010-10-08 Thread José Mejuto
Hello FPC, Friday, October 8, 2010, 1:41:39 PM, you wrote: >> Creation order >> -- >> 1) Create main form MS> application.createform() or t*form.create() >> 2) Create data module MS> application.createdatamodule(); >> 3) Wait in main form for user input >> 4) Create second form MS>

Re: [fpc-devel] LocalReferenceFixup

2010-10-08 Thread Martin Schreiber
On Friday, 8. October 2010 11.16:44 José Mejuto wrote: > > Relationship > > > MainSecond form Datamodule > +--+ +--++---+ > > | | | SQLQuery |+---> SQLConnection --+ > | > |Button-->|| || | | | > > +--+ +---

Re[2]: [fpc-devel] LocalReferenceFixup

2010-10-08 Thread José Mejuto
Hello FPC, Friday, October 8, 2010, 8:35:44 AM, you wrote: >> Aha. In MSEgui application.createform()/createdatamodule() must be called in >> order to allow component linking with already loaded modules, t*form.create() >> is not enough. I don't know how this works in Lazarus. MG> In Lazarus both