I'm trying StrataFrame and want to know how can I manage the Load and Save with the backgroundworker object, or if there is another easier way to continue working in one form while loading another form, for instance.
Thanks in advance.
Roy
P.S. excuse my english
Your English is just fine! You can definitley save on threads as we do this ourselves quite often. In fact, the business object already has a property called DataLayerSavingThreads which allows you to increase the number of threads that will be used when saving records.
Loading just requires that you create a thread (or a backgroundworker thread) and call a Fill method on the BO.
Another question, how can automaticaly generate the fields in the forms, for instance, textboxes, comboboxes, etc?
'-- Set any properties here like position or binding values
'-- Add the control to the form collectionMe.Controls.Add(loControl)