Reference Standard OLE types

A

Ade

I want to set a reference to 'Standard OLE types' (Access 97) but when I go
in to the Set Reference dialog there is no listing for 'Standard OLE Types',
does it come under a different name or will I need to download and install
the reference.
 
A

Ade

Stephen, although Access now accepts 'SavePicture' after referencing as you
suggested, I am getting an error message - 'Compile error, Expected: = '
My line of code is - SavePicture(obj,"C\SL11-52")
 
D

Douglas J. Steele

Sounds as though SavePicture was defined as a function.

To use a function without worrying about what it returns, use either

Call SavePicture(obj,"C\SL11-52")

or

SavePicture obj, "C\SL11-52"
 
Top