jose525
jose525
About
- Username
- jose525
- Location
- Deutschland
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
hello, is OperacjaWydruk your own class?
-
solution found myself in topic "AssignAll"
-
again me and I found a solution (maybe it isn't nice, but it works) public void CopyReport(Base source, Base target) { Base targetItem; target.Assign(source); target.Name = source.Name; foreach (Base sourceItem in source.ChildObjects) …
-
Hello again, not the loading of a report takes so much time. It's the deserialization of containing objects. So my solution could be to load and deserialize once and then copy the report every time. BUT: For copy the report I use AssignAll method…
-
there was an bug in the code listing before: here is the correct version: ReportPage targetPg, currentPg; DataBand targetBand, currentBand; ImageExport export; MemoryStream memStream, memSnippet; SizeF imgSize; Bitmap imgContent, imgSnipp…
-
I've found a solution. If it is nice - decide yourself. - Export the content to a image - Slice the exported image into defined pieces - create pages in the output report (amount of pages = amount of image pieces) - place every image-piece on …