I'd like to display a picture, that is saved as a blob, on a page that not binds the record.
I created a field in Table 79 of type BLOB and subtype BitMap.
Then I added the field TestPicture on Page 1 to actually insert an image manually. It gets displayed correctly on Page 1 (since Page 1 binds Table 79)
However, I want to display this picture on Page 5050 as well, so I added a record of Table 79, filtered the record and did CALCFIELDS.
OnInit():
recCompanyInfo.GET;
recCompanyInfo.CALCFIELDS("TestPicture");
I created a new field on Page 5050 and set the SourceExpr to the BLOB field TestPicture on my added record variable recCompanyInfo.
But it does not show the picture, instead it displays a greyed out text field.
What did I do wrong?
Edit
Dynamics NAV 2009 SP1, RTC
OnInit(),OnOpenPage()andOnAfterGetRecord()- Ello