OLE embedded object property

  • Thread starter Thread starter Wade Gillingham
  • Start date Start date
W

Wade Gillingham

I have a table with an OLE object field that stores embedded *.pdf
files. I would like my report to display an icon if the record has an
object embedded - if the OLE field is not blank. In VB, how do I check
to see if the record has an object or not? I've tried

if [myOLEObject].Value = True then
...

I can handle displaying the icon but can't get the logic down for
looking at the OLE field.

Thanks.
 
If Not IsNull(Me.NameOfYourOLEFrameControl.Value) Then

--

HTH
Stephen Lebans
http://www.lebans.com
Access Code, Tips and Tricks
Please respond only to the newsgroups so everyone can benefit.
 
Back
Top