MicroFour.StrataFrame.Data.Databasics.DataSources(0).SetDebugOn("c:\\temp\\mydebug.html",True);.
mydebug.html is empty.
I cannot understand what you mean with "capture the errorSaving event"
Save returns "Success"
MicroFour.StrataFrame.Data.Databasics.DataSources(0).SetDebugOn("c:\\temp\\mydebug.html",True);
or you need to capture the ErrorSaving event of the BO and look at the event args to see if you are getting an error.
Last, what does the Save() method return as a result. You can use all of these to figure out where your problem is.
this.CurrentDataTable is empty before I run CopyDataTable() and it contains all my data after CopyDataTable()
this.CurrentDataTable is empty before I run CopyDataFrom and it contains all my data after CopyDataFrom().
This will be in the BusinessLayer class found in the MicroFour StrataFrame Business project when you open the source solution.
I think your problem is happening before you ever get here. You need to look at the data table in the debugger to see if the data gets copied over before you call the save command.
1. Where can I find the source code of CopyDataFrom() in the Source Code Directory?2. If this would be an SQL error, where could I find the SQL error message?
...gerhard...