Thanks for your last comment..
I try to run the the next code :
Function Update_Objet_OLE()
On Error GoTo Error_cmdOLEAuto_Click
With Me![OLEIndependient1]
.Enabled = True
.Locked = False
.OLETypeAllowed = acOLEEither
.Class = "Access.Application"
.SourceDoc = "C:\Access_Proyects\bd1.mdb"
.SourceItem = "Form1"
.Action = acOLECreateLink
.SizeMode = acOLESizeZoom
End With
Exit_cmdOLEAuto_Click:
Exit Function
Error_cmdOLEAuto_Click:
MsgBox CStr(Err) & " " & Err.Description
Resume Exit_cmdOLEAuto_Click
End Function
...that call from one button in the form ..
and i receive the next error :
2785 The OLE server can't open the object.
I find in examples from web pages about making
Ole objects from Word,Excel,P.Point, but
the Access object is very dificult to find.
(from the Access Application)
Can you help me with this error?
Thank for your help.