Ok, here's my deal, I'm creating an access db from scratch on the fly. I need to create an OLE field in this db, but I'm having trouble doing so. For other fields I use something similar to this...
so for my OLE field, I use what for the fld.Type....?
Does anyone know? I can't seem to find this info anywhere and its driving me crazy!!
Thanks in advance.
Thanks - Todd
Code:
fld.Name = "Date"
fld.Type = dbDate
tbl.Fields.Append fld
Set fld = Nothing
fld.Name = "Hold"
fld.Type = dbBoolean
tbl.Fields.Append fld
Set fld = Nothing
fld.Name = "Amount"
fld.Type = dbSingle
tbl.Fields.Append fld
Set fld = Nothing
fld.Name = "Notes"
fld.Type = dbText
fld.Size = 255
tbl.Fields.Append fld
Set fld = Nothing
so for my OLE field, I use what for the fld.Type....?
Code:
fld.Name = "Logo"
fld.Type = dbXXX
tbl.Fields.Append fld
Set fld = Nothing
Does anyone know? I can't seem to find this info anywhere and its driving me crazy!!
Thanks in advance.
Thanks - Todd