Crystal Report中的OLE对象

时间:2012-10-02 18:01:22

标签: c# asp.net crystal-reports

我非常困惑如何在Crystal Report中使用OLE对象

我正在执行以下步骤: -

(RC - 插入 - OLE OBJECT)。 从文件中选择:选择图像并将Ole对象放置到Crystal Report。

但是,如果您尝试显示预览,那么此处不会显示任何内容。

所以请描述一下背后的问题。

1 个答案:

答案 0 :(得分:1)

例如,您可以在报告中添加ole对象 在c#.net中你可以这样做 首先,您必须添加对项目的引用 我通常使用CRAXDRT.dll和CrystalDecisions.Shared.dll,然后你可以使用下面的代码将你的ole对象添加到你的报告中:

CRAXDRT.OleObject to3 = report2.Sections[i].AddPictureObject("YourPictureName.bmp", 0, 0);
to3.Height = 1600;  //just a number as height
to3.Width = 1250;   //just a number as width
to3.Left = 0;       //the left part of the object will be start from the value which you set for this property
to3.Top = 0;        //the top part of the object will be start from the value which you set for this property