A dashboard similar to a dashboard in Crystal Reports

When I use Panel Control, the control that contains the panel, the Top and Left properties are set from the beginning of the panel. For example, if I have a shortcut that is placed in the Panel, if I have Label.Left = 100, this property means 100 pixels from the beginning of the Container panel, and not from the beginning of the form. I am looking for such a control in Crystal Reports. The Box object is wrong. This image describes my problem better:

enter image description here

Here is Label.Left = 100. What control should I use in Crystal Reports for this?

+4
source share
1 answer

im not sure if i am having your problem but i think this might help you. in C # .net you can use the left and top to add your object to the crystal report for example, this code:

CRAXDRT.Report report1 = new CRAXDRT.Report(); CRAXDRT.Application app1 = new CRAXDRT.Application(); report1 = app1.OpenReport("Test.rpt", OpenReportMethod.OpenReportByDefault); CRAXDRT.OleObject to3 = report1.Sections[1].AddPictureObject("YourPhoto.bmp", 0, 0); to3.Left = 100; to3.Top = 20; to3.Height = 500; to3.Width = 600; 
0
source

All Articles