Centralised DataSet
My mainform opens a form as modal on which I have dropped two tables. However every time the form is shown, which is frequent, the dataset etc has to be initialized and loaded, and this causes a delay of a couple of seconds before the for opens.
So I thought I could centralise the DataSet and tables etc so they could remain in memory throughout the app running.
One way I have done this was to drop these tables onto the main form and delete the navigator and dataview thus leaving the DataSet etc. I then created public fields in the modal form and when I show the form I set these fields to point to the equivilent fields in the main form.
Is this the best way of doing things?

