Installing the SF 1.6.6 Beta update, I got an error when Building StrataFrame Databases. Please see images attached.
The process is looking for a Triggers.xml file.
Tomorrow if I have some time or in the next update I will do all steps above and will also manually remove C:\Program Files\Common Files\MicroFour\StrataFrame before installing to see if that takes care of future installations.
P.S.
I am very happy with all new features added, specially those related to the ListView which I use a lot in my current project.
Yeah, we have been using this extensively as well...so that keeps the features coming
One thing I thought I would point out on this new release is the BOs SaveCurrentDataTableToSnapShot and RestoreCurrentDataTableFromSnapshot methods. These were implemented specifically for the ListView and performing Undos if their was a cancel out of a child dialog form. The complication without this was the following scenario:
At this point prior to this method, if you performed an Undo you lost the new record because it technically still had a RowState of Added. With the Save and Restore snapshot methods, you never need to call Undo. You should always let the ListView perform an automatic snapshot (does by default) then just call the Restore if the end-user cancelled the child dialog. This way it is always 100% accurate in regards to what the end-user has been doing.
Thanks for explaining this in more detail. Today I will start testing those new changes.
BTW, you won't believe this, but 2 days ago while testing a form which has 2 listview controls, as an end user, I felt the need to add a DoubleClick action to edit the selected record, and boom! you just implemented that feature in this release, it couldn't be better than that!
Cool