Detect file embedding

  • Thread starter Thread starter Question Boy
  • Start date Start date
Q

Question Boy

Is there an easy vba function... to determine if any table have field to
embed objects (images, docs, etc.)?

Thank you,

QB
 
On Thu, 27 Mar 2008 14:39:00 -0700, Question Boy

Sure, just test if
currentdb.TableDefs("YourTable").Fields("YourField").Type =
dbLongBinary
I'm sure you can add the loops over the Tabledefs collection and
within that over the Fields collection.

-Tom.
 
Back
Top