我非常非常困惑如何在 Crystal Report 中使用 OLE 对象
我正在执行以下步骤:-
(RC - 插入 - OLE 对象)。从文件中选择:选择图像并将 Ole 对象放置到 Crystal Report。
但是在这样做之后,如果您尝试显示预览,则此处不会显示任何内容。
所以请描述一下这背后的问题。
我非常非常困惑如何在 Crystal Report 中使用 OLE 对象
我正在执行以下步骤:-
(RC - 插入 - OLE 对象)。从文件中选择:选择图像并将 Ole 对象放置到 Crystal Report。
但是在这样做之后,如果您尝试显示预览,则此处不会显示任何内容。
所以请描述一下这背后的问题。
例如,您想在 c#.net 中将 ole 对象添加到您的报告中您可以这样做首先您必须添加对项目的引用我通常使用 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