Image

Horse06Horse06 Member Posts: 496
Hi, I tried to add an image to a report.
First of all, I saved the cup.bmp in my C drive. Then on the Section body of the report, I added a PictureBox and set 2 properties
BitmapList C:\cup.bmp
SourceExpr 0 (zero).

But I have an error:
bitmap cannot contain C:/cup.bmp.
The maximum size of Bitmap(including file name and path) is 32K(32756 bytes).

Please help! Thanks!

Comments

  • canadian_baconcanadian_bacon Member Posts: 91
    32k is the maximum file size for a picture box. If you want to go beyond this you will have to use an image from the toolbar.
  • Horse06Horse06 Member Posts: 496
    Thanks! How to use it from the toolbar?
  • MalajloMalajlo Member Posts: 294
    What toolbar?!?
    Compiled images in objects are limited to 32KB. Used control is Image
    Printing (or showing on forms) larger pictures can be done using image stored in BLOB (can be stored in record or imported in runtime).
    How it is done, check sales documents. Company logo is stored in BLOB, retrieved from T:79, Picture field in CALCFIELDS and PictureBox control on report has SourceExpr to CompanyInfo.Picture.
Sign In or Register to comment.