Results 1 to 4 of 4
  1. #1
    anchamal is offline Novice
    Windows 7 32bit Access 2003
    Join Date
    Dec 2010
    Posts
    15

    subform image link

    i have a form where i need to display the first 6 results (images). the information is comming from a subform which has all the information.


    also i need to know after pressing the "next" button how to display the next 6 images from the same subform and so on.
    using ms access 2013
    Attached Files Attached Files

  2. #2
    June7's Avatar
    June7 is online now VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,919
    Dynamic display of images in Access 2003 is not easy. Review

    http://office.microsoft.com/en-us/ac...001147204.aspx

    http://support.microsoft.com/kb/285820

    Wait, your profile says 2003 but the file is accdb.

    There is only one field with path to image file. Why do you say 6 images?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    ItsMe's Avatar
    ItsMe is offline Sometimes Helpful
    Windows 7 64bit Access 2010 32bit
    Join Date
    Aug 2013
    Posts
    7,862
    As for the top 6, maybe something like in VBA or as a query object.

    Code:
    Dim strSQL As String
    strSQL = "SELECT TOP 6 Albums.[album name] " _
        & "AS Top6Album, Albums.[albumid] " _
        & "FROM Albums " _
        & "ORDER BY Albums.[album name] DESC;"
    Me.RecordSource = strSQL

  4. #4
    anchamal is offline Novice
    Windows 7 32bit Access 2003
    Join Date
    Dec 2010
    Posts
    15
    sorry it's office 2013

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

Similar Threads

  1. Link image files to Access table
    By amerifax in forum Access
    Replies: 12
    Last Post: 07-03-2013, 03:50 AM
  2. Show image in subform , Access 2007
    By s128 in forum Forms
    Replies: 1
    Last Post: 06-03-2013, 06:46 AM
  3. Image visible if listed in a subform
    By nigelbloomy in forum Forms
    Replies: 4
    Last Post: 12-20-2012, 04:40 PM
  4. Link vs. imbed image: result is counterintuitive
    By VirgilMachine in forum Access
    Replies: 14
    Last Post: 12-13-2011, 01:55 PM
  5. picture image link on a table textbox
    By john_gringo in forum Access
    Replies: 5
    Last Post: 11-04-2011, 02:21 PM

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