|
-
May 25th, 2001, 07:09 AM
#1
Thread Starter
New Member
Count the number of Columns or Fields in a MS Access 97
Using DAO I want to return the number of columns/fields from a particular access table to my vb application.
Thanks in anticiaption
-
May 25th, 2001, 02:19 PM
#2
Define your recordset:
dim RS as DAO.Recordset
Open your recordset:
RS.Open <SQL>,other parameters
GetFields:
Debug.print RS.Fields.Count
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|