Images distorted/resized during insert in Jet 4.0 database applica

H

harfmt

I support a jet 4.0 database application that is deployed out to multiple
users. These users have different types of Windows Operating Systems. There
is some support from the vendor for this system, but they are not able to
answer all problems. The data files live on a central server and are accessed
from each user's PC where the database application is installed.

One recurring problem is the inserting of bitmap images into the database
via a front end screen. The image is then also displayed on the same front
end screen. The file must be a mspaint bitmap with a .BMP extension and must
be a certain size and that's about it. On certain machines, and I can't pin
it down to a particular OP, the image appears on the input display screen
with its file name displayed! and the picture is distored or tiny. I can go
to another machine and insert the same image in the same way - no file name
displays and the image looks fine. I then go back to the machine that I was
originally having the problem with, open the database and bingo! the image
looks perfect.

I've tried many things including:
- making sure mspaint is the default for all bitmaps
- removing/disabling other imaging software from machine

I've had a look at the registry and attempted to make mspaint the default
there as well. Not sure if I've done that correctly or thoroughly.

I've found that indexed images always seem to cause a problem. But, the
problem also happens with non-indexed RGB images as well. I think that it is
something else (imaging software?) interfering with the insertion process.

Has anyone else come across this problem before? I would welcome any facts
or educated guesses.
 
S

Sylvain Lafontaine

Instead of using the standard OLEDB bound control, you can try the DBPix
control from Ammara.

Another possibility would be to download and store on the local disk the
images from the database. You can then use the Picture control to display
them. However, this won't work for continuous forms.
 
S

Sylvain Lafontaine

And if your form is in single view mode (ie., not a continouous form),
another possibility would be to embed a WebBrowser control and use it to
display your image using its URL; see:
http://bytes.com/forum/thread500687.html (and search the web for "Browser
Control Access", etc.).
 

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