|
-
Oct 23rd, 2003, 02:58 AM
#1
Thread Starter
Addicted Member
load filed names into an array or counting no of fileds
dear all
how to know how many number of fileds are there in a table and i need all the field names loaded into an array. replies and help will be appreciated.
thanks
periyur
-
Oct 23rd, 2003, 03:26 AM
#2
VB Code:
msgbox objrs.Fields.Count
'Number of fields
For j = 0 To objrs.Fields.Count - 1
strArr(j) = objrs.Fields(j).Name
Next
-
Oct 23rd, 2003, 03:33 AM
#3
Thread Starter
Addicted Member
thanks a lot mendhak, it was very helpful.
-
Oct 23rd, 2003, 04:44 AM
#4
Frenzied Member
Also take a look at the GETROWS method. Of course it retrieves the data as well.
"Brothers, you asked for it."
...Francisco Domingo Carlos Andres Sebastian D'Anconia
-
Oct 23rd, 2003, 07:48 AM
#5
YW.
-
Oct 23rd, 2003, 07:52 AM
#6
Frenzied Member
"Brothers, you asked for it."
...Francisco Domingo Carlos Andres Sebastian D'Anconia
-
Oct 23rd, 2003, 07:54 AM
#7
-
Oct 23rd, 2003, 08:01 AM
#8
Frenzied Member
LOL
"Brothers, you asked for it."
...Francisco Domingo Carlos Andres Sebastian D'Anconia
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
|