cyberpac9
Registered User.
- Local time
- Yesterday, 19:11
- Joined
- Jun 6, 2005
- Messages
- 70
i have a query that i've used on some forms that returns a list of records. however, i have some users who don't want the entire list...they'd just like a form that, after entering their parameters, returns the number of records (sort of like a count)....how would i accomplish that using vba?
i've done similar things using PHP but not sure how to do this using VBA. i was thinking something like (using my own terms not actual VBA code):
stSQL = "complex sql string"
result = execute (stSQL)
cntResult = countOfRecords (result)
is there any way to do anything like this?
i've done similar things using PHP but not sure how to do this using VBA. i was thinking something like (using my own terms not actual VBA code):
stSQL = "complex sql string"
result = execute (stSQL)
cntResult = countOfRecords (result)
is there any way to do anything like this?