ahmed salah

ahmed salah

  • NA
  • 85
  • 57.5k

How to show more image in report rdlc

Mar 7 2017 11:34 AM
Problem
 
How to get image qr per 8 records in report rdlc
if one record problem solved for me by passing qr image from memory stream to rdlc directly
I working in windows form application vs2015
 
I make program to generate qr code with following data
UserID,UserName,Country,Membership and save data of
UserID,UserName,Country,Membership in excel 2007
Until now not have any problem in saving following data :
In excel after I save these data in excel i doing report rdlc
with these data and qr code image generating i not save in excel
I pass the image to rdlc and save it in bitmap as below
bmp.Save(fileName3, ImageFormat.Jpeg);
Then pass to rdlc .
 
suddenly when i need to print these data with qr code
 
client tell me he need every 8 record per page
 
so that how i get qr image in report per 8 records
what i do to solve that problem
the problem not in display 8 record

but how to get image per 8 records in page .

if any one have any idea please help me .