Message 1 of 11
A way to modify model outside transaction, issue?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all
I was building an app and used Form.Show() instead of Form.ShowDialog(), because I thought I could use the form in modeless functionality to be able select elements while keeping the form open.
Then I forgot to add a Transaction to the part which modifies the model. The modification consists of reading an excel file and modifing parameter values of selected elements.
Then I discovered that it was possible for me to write data to the parameters I wanted even though i didn't use a transaction. Also the undo list stays empty and does not record my modifications. The change in parameter data is only visible after I deselect/select element.
Is this an issue or is it as intended? More info on request.