我非常困惑如何在Crystal Report中使用OLE对象
我正在执行以下步骤: -
(RC - 插入 - OLE OBJECT)。 从文件中选择:选择图像并将Ole对象放置到Crystal Report。
但是,如果您尝试显示预览,那么此处不会显示任何内容。
所以请描述一下背后的问题。
答案 0 :(得分:1)
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