|
-
Nov 10th, 1999, 08:05 PM
#1
Thread Starter
Hyperactive Member
VB5:
Hi vb progs,
To fill in information in my database I, have to check this information (Number,Text, Memo etc.)
I did try to find it to search in VB5 the property behind the dot
MyDYN(MyField).??????
Is there any property to get this information.
Nice greetings,
Michelle.
-
Nov 10th, 1999, 08:45 PM
#2
Addicted Member
-
Nov 10th, 1999, 09:08 PM
#3
You can check the Type property of that field.
Recordset.Field("MyField").Type
The type would be one of the following constants:
dbBigInt - Big Integer
dbBinary - Binary
dbBoolean - Boolean
dbByte - Byte
dbChar - Char
dbCurrency - Currency
dbDate - Date/Time
dbDecimal - Decimal
dbDouble - Double
dbFloat - Float
dbGUID - GUID
dbInteger - Integer
dbLong - Long
dbLongBinary - Long Binary (OLE Object)
dbMemo - Memo
dbNumeric - Numeric
dbSingle - Single
dbText - Text
dbTime - Time
dbTimeStamp - Time Stamp
dbVarBinary - VarBinary
Regards,
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
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
|