473,657 Members | 2,515 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Image Problems (AutoRepeat and Crash Control)

Hello

I am in the early stages of my project development, and want to make
sure that I am approaching the issue of image display correctly.

Access2000. I have one table and a bound single form. I would like to
have one image (.bmp 100k or .jpg 30k) displayed on the form for each
record. I am using an ImageFrame to display my image, and the
following code to link the image to the display:

'In the InCurrent property of the form.
If Not (IsNull(Me.txtP hotoPath.Value) ) Then
Me![imgFrame].Picture = Me![txtPhotoPath]
End

The problem I'm having is the AutoRepeat capability of the lower
NavigationBar becomes disabled if a record containing a (.jpg) is
encountered. It has been established that the "LoadingIma ge"
dialog that Access automatically pops up is causing this. I noticed
that this does not occur if the image displayed is a (.bmp).

I'm sure that many developers are frustrated by this issue and I'm
wondering what my options are, considering that I want to distribute my
application to many sites that are single user and network based and
need to avoid options that will complicate this goal.

1- Since the LoadingImage dialog has not popped up with (bmp) files and
the AutoRepeat does work, should I commit exclusively to .bmp files???
Also, is it safe to say that I will not crash Access on a fast scroll
thru all the records (200 to 700) over a network when committed to bmp
files??? Or, must I somehow control the scroll speed or resort to a non
autorepeat scroll???

2-Since my image is displayed in a ImageBox, would it work better if I
used a Bound or Unbound OleBox???

3-Changing the registry is NOT an option because I plan to distribute
the application and this would require a registry modification to all
units before the app can be run. Is there a solution or concept of
displaying one image per record as described, using Access exclusively,
without 3rd party stuff???

4-It would be nice to accomplish my objective to include .jpg files
since they are very common! Are there any solutions that would include
this consideration as well???

ThankYou
Greg

Dec 24 '06 #1
1 1569
When it comes to rendering images, in Access as in other software, "patience
is a virtue." There is more processing to be done, apparently, when
rendering an image from a JPG than from a BMP, but the JPG takes less space
to store. You can check MVP Stephen Lebans' site for an approach to
converting an image to BMP separately before displaying it, but that will
take time, too.

Larry Linson
Microsoft Access MVP
<Ap******@gmail .comwrote in message
news:11******** **************@ a3g2000cwd.goog legroups.com...
Hello

I am in the early stages of my project development, and want to make
sure that I am approaching the issue of image display correctly.

Access2000. I have one table and a bound single form. I would like to
have one image (.bmp 100k or .jpg 30k) displayed on the form for each
record. I am using an ImageFrame to display my image, and the
following code to link the image to the display:

'In the InCurrent property of the form.
If Not (IsNull(Me.txtP hotoPath.Value) ) Then
Me![imgFrame].Picture = Me![txtPhotoPath]
End

The problem I'm having is the AutoRepeat capability of the lower
NavigationBar becomes disabled if a record containing a (.jpg) is
encountered. It has been established that the "LoadingIma ge"
dialog that Access automatically pops up is causing this. I noticed
that this does not occur if the image displayed is a (.bmp).

I'm sure that many developers are frustrated by this issue and I'm
wondering what my options are, considering that I want to distribute my
application to many sites that are single user and network based and
need to avoid options that will complicate this goal.

1- Since the LoadingImage dialog has not popped up with (bmp) files and
the AutoRepeat does work, should I commit exclusively to .bmp files???
Also, is it safe to say that I will not crash Access on a fast scroll
thru all the records (200 to 700) over a network when committed to bmp
files??? Or, must I somehow control the scroll speed or resort to a non
autorepeat scroll???

2-Since my image is displayed in a ImageBox, would it work better if I
used a Bound or Unbound OleBox???

3-Changing the registry is NOT an option because I plan to distribute
the application and this would require a registry modification to all
units before the app can be run. Is there a solution or concept of
displaying one image per record as described, using Access exclusively,
without 3rd party stuff???

4-It would be nice to accomplish my objective to include .jpg files
since they are very common! Are there any solutions that would include
this consideration as well???

ThankYou
Greg

Dec 24 '06 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
1962
by: Peter Row | last post by:
Hi, I know this may be a bit off topic since it is really a Teechart.net issue but I am at my wits end, a total hair pulling to baldness moment. I have a windows application that uses Teechart to plot several lines (highly simplified but that's the jist of it). All is fine, the form that this is on has buttons to allow you zoom in and out etc... However when the user/developer starts scrolling about and zooming in/out things they get...
3
2201
by: Fred R | last post by:
I'm designing an app in Access 97 that will facilitate the uploading of records and images to a website. The user selects the image thumbnails from the file system and drags them into the app. There appears to be just two types of controls that support this action: OLE controls and Hyperlink text boxes. I am using the hyperlink. Dragging the images into the hyperlink works just fine, but I'm quite dismayed about the lack of control over...
7
11613
by: lgbjr | last post by:
Hello All, I¡¯m using a context menu associated with some pictureboxes to provide copy/paste functionality. Copying the image to the clipboard was easy. But pasting an image from the clipboard is proving to be more difficult. These pictureboxes are bound to an AccessDB. If the user wants to add an image, they select an image using an OpenFileDialog: Dim result As DialogResult = Pic_Sel.ShowDialog() If (result = DialogResult.OK) Then
3
3470
by: meyvn77 | last post by:
Hello - I am looking for the best way to store images in a Access DB. My Idea - I have a table with 150,000 records. These recoreds represent a Crash (Traffic Accident). I have 50 different images that represent almost any type of Accident. Each crash record can be represented by one of those 50 images (depending on the Crash Data). I don't want to waste space by having each record have a BLOB field w/
0
1906
by: Mattia | last post by:
************************************************** Manage image without exhausted memory ************************************************** Hi; I have a big problem. I must create a script that upload an image an then resize it, if width or height are more than 250px. Now, after upload an image (in this example I suppose that it's a JPEG image):
0
1876
by: David | last post by:
Hello all. I am trying to implement my first server control and have run into two problems that I cannot solve. I need the assistance of someone with more experience. My goal was to create an input button that would allow for both text and an image on it. I am attempting to accomplish this by basing off of the asp:button control. I added a property for the image url and one to determine if the image is displayed on the left or right...
4
1602
by: Mark | last post by:
Hi I notice that in some cases, to get an icon, an object (for example a list view) uses an image list, in others (e.g. a form) the image is selected from the project resources, i.e. a file. As I have images that I'd like to use in both situations I would like to use the same method for each. Preferably, as I find importing images as resources as often as not crashes VS, I would like to work with an image list.
4
2901
by: Jamey Shuemaker | last post by:
Howdy, Saw a couple threads from the past few years on this topic, but didn't really find any solutions. Here's one I found: http://groups.google.com/group/comp.databases.ms-access/browse_frm/thread/f6ccff0186d12566/ That fella wanted to do pretty well the same thing I did (use a command button to move between records in a form). Moving from record to record
70
1059
by: quickcur | last post by:
hi can anyone explain me to read image to memory from a url it is very easy in java but it is hard to find an complete solution in c/c++. Thanks,
0
8324
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
8513
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8617
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7352
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
2742
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.