Results 1 to 5 of 5
  1. #1
    brs's Avatar
    brs is offline Novice
    Windows 8 Access 2010 64bit
    Join Date
    Mar 2014
    Posts
    17

    Display linked image in form view

    hello friends,



    i want to display the linked image in form view. 'ole object' has the property 'display type' as content or icon. but both settings shows only the icon and file name. 'attachment' field does show image in fom view but attaching images (jpeg or png) will increase database size.

    what is the solution?

  2. #2
    Ruegen's Avatar
    Ruegen is offline VIP
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2013
    Location
    Australia
    Posts
    1,496
    you take your a path \\server\folder\ or c:\

    then store that into a table field or a VBA string variable e.g.

    dim strPath as string
    strPath = \\server\folder\images\img01.jpg

    now you can change the ole control object to picture to = that string (strPath) or field from the table

    one example
    http://www.youtube.com/watch?v=7qmM0UT-u1I

    the other method is to set the control property of the ole to the field from the table with the path

    example two
    http://www.youtube.com/watch?v=f5ZOOMrDjtU

  3. #3
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    53,624
    Another approach is to set the ControlSource property of Image control.

    Store the image folderpath\filename in text field. Bind Image control to the field.

    If images will all be in the same path, can just store the filename then an expression in ControlSource:

    ="\\server\folderpath\" & [fieldname]
    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.

  4. #4
    brs's Avatar
    brs is offline Novice
    Windows 8 Access 2010 64bit
    Join Date
    Mar 2014
    Posts
    17
    thanks guys. the solutions are promising. i'll work it out this sunday.

  5. #5
    brs's Avatar
    brs is offline Novice
    Windows 8 Access 2010 64bit
    Join Date
    Mar 2014
    Posts
    17
    works fine !!! heart felt thanks guys.

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

Similar Threads

  1. Replies: 5
    Last Post: 02-06-2014, 09:10 AM
  2. Replies: 2
    Last Post: 01-28-2014, 10:13 PM
  3. Replies: 2
    Last Post: 10-10-2011, 10:58 AM
  4. Replies: 1
    Last Post: 12-05-2010, 02:34 AM
  5. Linked Image on Form
    By jheintz57 in forum Forms
    Replies: 0
    Last Post: 03-31-2010, 12:04 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