I am currently opening a form through a button with the following code:
The opened form is simply inheriting the security access from my caller form. For example, if user 1 has delete access to the current form A, clicks a button which opens form B, the user seems to inherit the delete access from A and is able to delete records on form B as well.
I would like to control the security here with more granularity - A and B should be able to have differing security between the two. One option is to modify this code to open through a Menu Item. This then separates the security between a caller and called form but will likely be a more invasive change for me to make.
Is there a way to accomplish separate security access levels while still using a FormRun object?