Help me out to add picture in the data field

chandruchandru Member Posts: 15
edited 2004-02-06 in Navision Attain
Hi

I am 5 days old baby in Navision.. :? don't know how to add picture in table..when i designed the table,..i declered the data type as BLOB and don't how to add the bmp file into that while running the table. can anyone help me out :?:

Thanks in anticipation
lou,chandru
You cannot discover new ocean unless you have the courage to lose sight ofthe shore.

Comments

  • Luc_VanDyckLuc_VanDyck Member, Moderator, Administrator Posts: 3,633
    Have a look at form 30 Item Card. When you click the menubutton Item -> Picture, form 346 Item Picture is opened. And here you find options to import/export a bitmap.

    Hint: blobfield.IMPORT('*.BMP',TRUE)
    No support using PM or e-mail - Please use this forum. BC TechDays 2024: 13 & 14 June 2024, Antwerp (Belgium)
  • awarnawarn Member Posts: 261
    Keep in mind as well that when you go to display this picture (say on a report, or a form) you need to call a CALCFIELDS first:

    OnInitReport:
    rTable.CALCFIELDS(rTable."Report Logo");

    Otherwise the picture could be imported and you would not see it!


    -A
Sign In or Register to comment.