Results 1 to 3 of 3
  1. #1
    WAVP375 is offline Competent Performer
    Windows 10 Access 2013 32bit
    Join Date
    Jul 2015
    Location
    Dayton Ohio
    Posts
    171

    Displaying photos in a form

    Any thoughts on how to accomplish the following: Having a query with the full path and file name of a list of photos, I would like to display them one at a time in a form. The form, I am familiar with for displaying the photos, what I need is an idea on how to cycle through them, display each and advancing to the next photo with the click of a button. Any thoughts will be appreciated.

  2. #2
    ranman256's Avatar
    ranman256 is offline VIP
    Windows Vista Access 2010 32bit
    Join Date
    Apr 2014
    Location
    Kentucky
    Posts
    9,524
    if the paths are in the record, show them in a list box
    put a IMAGE control on the form, when user clicks the path in the list box , display photo:

    Code:
    Private Sub lstBox_AfterUpdate()
    On Error Resume Next
    img1.Picture = lstBox
    End Sub

  3. #3
    WAVP375 is offline Competent Performer
    Windows 10 Access 2013 32bit
    Join Date
    Jul 2015
    Location
    Dayton Ohio
    Posts
    171
    I'm looking for a way to programmatically select the photo instead of selecting from a click, from a loop of some nature. Like a slide projector.

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Linked photos to url on an Access 2013 form
    By guitarzycki in forum Forms
    Replies: 8
    Last Post: 08-13-2018, 04:45 PM
  2. Replies: 6
    Last Post: 07-23-2018, 11:10 AM
  3. Display multiple photos on one form
    By Jray9242 in forum Programming
    Replies: 20
    Last Post: 04-23-2018, 11:46 AM
  4. Linking photos from data to a form
    By Monza2 in forum Access
    Replies: 6
    Last Post: 02-08-2017, 06:58 PM
  5. Replies: 11
    Last Post: 08-26-2016, 11:51 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums