Access 97 form OLE - Stop popup msgbox "Importing File . . ."

D

Dan McFall

Access 97 form

Is it possible to suppress the annoying "Importing" msgbox popup when a
record change is made on a form containing an image?
By the time the msgbox displays, the image has already been imported and the
msgbox closes. The result is a brief annoying flash as you click through the
recordset.
Currently, the image keys off of a database text field named [myPic] and the
update fires from form_Current event




Private Sub Form_Current()
On Error GoTo Bad:
If ([myPic] <> "") Then
imgPic.Picture = [myPic]
End If
Exit Sub
Bad:
imgPic.Picture = ""
Resume Next
End Sub



Dan McFall

Omega Design
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top