Hi
I have created one ssrs report and im using Query as datasource,here i want to print logo through “database”,for this i have created one display method and the code fallows below but that code is not working,please help me on this issue
display Bitmap LCI_CompanyLogo()
{
Bitmap companylogo;
CompanyInfo companyInfo;
companylogo = FormLetter::companyLogo();
return companylogo;
}
…
display Bitmap companyLogo()
{
CompanyInfo companyInfo = CompanyInfo::find();
return CompanyImage::findByRecord(companyInfo).Image;
}
these are the scripts i have tried for logo in display method
please help me with the sample code
your suggessions are appreciable
Thanks and Regards,
Pawan.