Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Suppress "Importing..." message?

Status
Not open for further replies.

utc13

Programmer
Oct 25, 2001
43
US
I have an image control on a form. A different image is displayed in the control when the user moves from record to record. The images are stored in an external directory and I use the OnCurrent event to change the image control's '.Picture' property. The problem I have is that each time you move to the next record Access pops up the 'please wait... importing' status dialog. Is there a way to suppress this dialog from popping up?

Also, I have a request from a user who would like to be able to select the picture and copy it to the clipboard. I can't do this with the Image Control because it can't have the focus. Is there another way to display images in this format by using the Unbound Object Frame or something else?
 
I am not sure if this will work with this message but try this:

DoCmd.SetWarnings false
. . put your code here.
DoCmd.SetWarnings tru

Let me know if it works in this situation.

Bob Scriver
 
Unfortunately I already tried the SetWarnings avenue and it did not work. Any other suggestions?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top