Isaac
Lifelong Learner
- Local time
- Today, 13:41
- Joined
- Mar 14, 2017
- Messages
- 11,055
How valuable would you find this in Access VBA?
- Intellisense based on the known structure of Tables and Queries, when typing a recordset open OR in any scenario where the IDE can "sense" that you are writing VBA that is clearly forming a SQL statement
Imagine the Table names popping up, and then the appropriate cascading population of Column names popping up - complete with the column data type!
Just think of how immense the impact of this would be on VBA development in Access! I'll guess that it might have been during the (wonderful) lifecycle of ADP's was the closest Microsoft ever got to considering doing this....
- Intellisense based on the known structure of Tables and Queries, when typing a recordset open OR in any scenario where the IDE can "sense" that you are writing VBA that is clearly forming a SQL statement
Code:
Set rst = CurrentDb.OpenRecordset("select * from ____ where _____._____ = 'value'
Imagine the Table names popping up, and then the appropriate cascading population of Column names popping up - complete with the column data type!
Just think of how immense the impact of this would be on VBA development in Access! I'll guess that it might have been during the (wonderful) lifecycle of ADP's was the closest Microsoft ever got to considering doing this....