In one of my databases .Value changes to .value as soon as I exit the line.
I searched the whole project to see if a variable named value is declared anywhere. I couldn't find any.
In a copy of database, I started deleting one object at a time (form-report-module) to find out the source of this problem.
Now the whole database contains only one module and only one sub. All forms-reports-modules-macors-tables-queries are deleted.
but still the problem persists.
this is the only procedure in the database. No matter how many times I type .Value, it changes to .value
I've compiled & repaired, decompiled and re-compiled.
Anywhere else I have to check?
Any kind of advice is much appreciated.
I searched the whole project to see if a variable named value is declared anywhere. I couldn't find any.
In a copy of database, I started deleting one object at a time (form-report-module) to find out the source of this problem.
Now the whole database contains only one module and only one sub. All forms-reports-modules-macors-tables-queries are deleted.
but still the problem persists.
Code:
Sub test()
Dim obj As Access.TextBox
Debug.Print obj.value
End Sub
this is the only procedure in the database. No matter how many times I type .Value, it changes to .value
I've compiled & repaired, decompiled and re-compiled.
Anywhere else I have to check?
Any kind of advice is much appreciated.
Last edited: