Results 1 to 6 of 6

Thread: How I want to print more than 8 pictures

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    How I want to print more than 8 pictures

    I have 8 photos and I want to print every picture in Data Report

    each image in one Data Report

    How it is done

  2. #2

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: How I want to print more than 8 pictures


  3. #3
    PowerPoster ChrisE's Avatar
    Join Date
    Jun 2017
    Location
    Frankfurt
    Posts
    3,046

    Re: How I want to print more than 8 pictures

    Hi,

    add a RtpImage to your Report in the Header section

    regards
    Chris
    to hunt a species to extinction is not logical !
    since 2010 the number of Tigers are rising again in 2016 - 3900 were counted. with Baby Callas it's 3901, my wife and I had 2-3 months the privilege of raising a Baby Tiger.

  4. #4
    PowerPoster
    Join Date
    Feb 2006
    Posts
    24,482

    Re: How I want to print more than 8 pictures

    RptImage is not a databound control. It only displays static images (remaining the same for throughout the report) so it is only useful for things like report or page banners or "bullet" like fixed images.

  5. #5

    Thread Starter
    Addicted Member
    Join Date
    Jun 2017
    Posts
    134

    Re: How I want to print more than 8 pictures

    ok. so how to print all images in one data report.

  6. #6
    PowerPoster ChrisE's Avatar
    Join Date
    Jun 2017
    Location
    Frankfurt
    Posts
    3,046

    Re: How I want to print more than 8 pictures

    Hi,

    try this.
    Code:
      With .Sections("Bereich4").Controls
           Set .Item("Symbol1").Picture = LoadPicture(App.Path & "\Bild1.bmp")
           Set .Item("Symbol2").Picture = LoadPicture(App.Path & "\18.jpg")
                'etc...
        End With
    regards
    Chris
    to hunt a species to extinction is not logical !
    since 2010 the number of Tigers are rising again in 2016 - 3900 were counted. with Baby Callas it's 3901, my wife and I had 2-3 months the privilege of raising a Baby Tiger.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width