Papa_Bear1
Member
- Local time
- Today, 07:53
- Joined
- Feb 28, 2020
- Messages
- 101
I've pretty much always used bound forms, and have only rarely needed to do otherwise. But, while looking at one of my very simple forms recently, it occurred to me that I wouldn't have to use a bound form to show this one particular piece of data. I could, instead, use a function (that I wrote for an unbound control in another form actually... so, I have the function already...) to retrieve the value, and place that value in an unbound control on the same form, and make the whole form unbound as well.
My question is: Is there any real benefit to having a simple form like this unbound?
------
Some of my thoughts while trying to answer this myself:
1) I've read/heard that keeping a bound control open for a long time, perhaps that has a lot of data in it, etc., could pose some problems. In this particular case - it is eminently simple - like one field and one button - and won't be open for long. So this line of thinking is probably N/A.
2) I've had occasions before where trying to use multiple forms bound to the same table - but at different times - (in a case like this that is a "UserOptions" kind of table with just one row...), when combined with other SQL operations, has caused some unexpected record-locking. So, in the back of my mind, I wonder if this might be one advantage to being unbound here. It reduces the number of forms trying to use the same table.
------
Just curious if there is an obvious answer - or if it is just another one of those fuzzy areas.
Thanks in advance for any insight.
My question is: Is there any real benefit to having a simple form like this unbound?
------
Some of my thoughts while trying to answer this myself:
1) I've read/heard that keeping a bound control open for a long time, perhaps that has a lot of data in it, etc., could pose some problems. In this particular case - it is eminently simple - like one field and one button - and won't be open for long. So this line of thinking is probably N/A.
2) I've had occasions before where trying to use multiple forms bound to the same table - but at different times - (in a case like this that is a "UserOptions" kind of table with just one row...), when combined with other SQL operations, has caused some unexpected record-locking. So, in the back of my mind, I wonder if this might be one advantage to being unbound here. It reduces the number of forms trying to use the same table.
------
Just curious if there is an obvious answer - or if it is just another one of those fuzzy areas.
Thanks in advance for any insight.