Greetings,
Does VBA in Access 2007 have an array type object which supports a string to be the identifier into the array storage space rather than a numeric?
That would save me having to scan a lookup array to find the ID# that attribute's other parameters are stored at in other array objects.
I am in need of something similar to the Stem in the Rexx language.
For example:
I want to do something like:
I have not seen support for such in VBA. Suggestions other than scanning the array with the master list?
Does VBA in Access 2007 have an array type object which supports a string to be the identifier into the array storage space rather than a numeric?
That would save me having to scan a lookup array to find the ID# that attribute's other parameters are stored at in other array objects.
I am in need of something similar to the Stem in the Rexx language.
For example:
Code:
'Define forms here...
strFormNameArray(0) = "1"
strFormNameArray(1) = "partsbuyercodeselect"
'Define SQL for normal forms here...
strSQLNormArray(1) = "SELECT t.id,t.sort,t.active,t.title FROM tmptblqry_partsbuyercodetype AS t WHERE (((t.active) = 1))"
Code:
strFormNameIndexArray("partsbuyercodeselect") = "1"