Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
284 views
in Technique[技术] by (71.8m points)

c# - How to view Dynamic Images in Crystal Report 9 during runtime without using Database?

I encounter this problem because im using crystal report 9 and I can't view Dynamic images in my Reports.

The scenario is like this.

The user will just browse the image and be the picture to my report. The reason i will not save it to database because it will only used once and if i will save it, it is a burden to my database.

I search a lot and the solution is the Graphic Location in Crystal Report but it is only supported in Crystal Report XI i think..

Can anyone have an idea regarding this problem....

Im using C#..

Thank you so much

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

If you are using a dataset as the report data source:

1) Put the image data in a byte[] buffer

2) Put it into a column of type byte[] in your dataset: row[column] = buffer;

3) In Crystal, if your datasource is not the dataset, use a XSD file with a column of type base64Binary.

4) In Crystal, drag the field from the data source to the report.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...