Report with bitmaps

Hello,

please, would you be so kind to help me with creating report with bitmaps.
I have name of bitmap file in one of MDB database column and I need to display (and print) in report. I tried to use Crystal Report, but without success.

Thank for any answer

Sincerely Miroslav Knapek


Answer this question

Report with bitmaps

  • CathyP

    I have the same question.  Is this with Crystal Reports
  • Pringy

    So each record has it's own bitmap, and you will conceivably be printing lots of bitmaps   
  • panther_SLO

    This works with a PrintDocument.
    e.Graphics.DrawImage(Image.FromFile(ProjectIDSelection.ProjectImagePath), 100, 200, 300, 225) ' e.Graphics.VisibleClipBounds)
            
    where ProjectIDSelection.ProjectImagePath is a variable containing the path.

    I would like to do this with Crystal Reports.

  • Report with bitmaps