|
-
Oct 14th, 1999, 01:39 AM
#1
Thread Starter
Hyperactive Member
When you design the tables of a database, you can add a descripcion, caption, comment or message to each field.
How can I get this descripcion of each field using RDO?
Any idea will be deeply appreciated.
Thanks!
Tonatiuh
-
Oct 14th, 1999, 02:49 AM
#2
Frenzied Member
It's not in the database, it appears to be a PROPERTY. Which one, I'm not sure...
-
Oct 14th, 1999, 04:56 AM
#3
Thread Starter
Hyperactive Member
ADO fields, have a property called 'Properties' and one of that returns de description of the field but, RDO column doesn't have this property or any other which seems that.
-
Oct 14th, 1999, 09:14 AM
#4
Guru
I'm not familiar with RDO, but I'm assuming it's kinda like ADO, where I could only get 3 properties for a field. I was able to get 25 fields using Jet, most of which you are looking for......
Dim db As Database
Dim rs As Recordset
Dim tbl As TableDef
Dim I As Long
Set db = DBEngine.OpenDatabase("biblio.mdb")
Set tbl = db.TableDefs("Authors")
For I = 0 To 24
MsgBox tbl.Fields("Au_ID").Properties(I).Name
Next I
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
|