Hi
For some reason I am unable to open a JPG images into the OLE object
I did everything as described here
Tried loading the jpg without the dialog and it wont show. I have Access XP.
TIA.
I had never tried the ActiveX Dialog, since Office has its own
if you use the following code, you must set a reference to the Office Library.
Copy this code behind a button, or in the OnEnter event of your Ole field, or where ever you need.
Code:
Dim dlgBox As FileDialog
Set dlgBox = Application.FileDialog(msoFileDialogOpen)
With dlgBox
.AllowMultiSelect = no
.Show
End With
Me.MyOlefield = dlgBox.SelectedItems(1)