idtluc0210726780
idtluc0210726780
About
- Username
- idtluc0210726780
- Joined
- Visits
- 0
- Last Active
- Roles
- Members
Comments
-
Ok, never mind. After a lot of trial and error, it turns out this was not working because I still had the DataColumn property set on the image. This does not appear to be overridden, unlike other controls such as text (such as when you TextControl…
-
In my experience, this usually happens if your datasource is not assigned to your databand.
-
So obviously this is SUPER late to the party, but it may help someone down the track. I was faced with the same issue this morning, since I wanted to replace the toolbar and resize and center reports after they had been rendered. Disclaimer. Th…
-
not 100% sure on this, but you probably need to break those statements into their own individual brackets; e.g. memo59.Value] + [memo60.Value Since its a memo its also probably memo59.Text not value. But then, I haven't tried any of this.
-
Not sure what you're asking here. You could use a text editor like notepad++ to do a search/replace on your .frx files. or you could assign the report title via a parameter you set in your application.
-
Assuming here you're using ASP.Net? Anyway this is what I've used in an old ASP.Net project that loads and runs arbitrary reports; Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â for (int i = 0; i < report1.Report.Dictionary.Connections.Count; i++) Â Â Â Â Â …
-
Use the PDFExport class. e.g; Report report = new Report(); PDFExport reportexport = new PDFExport(); report.Load("...reportpath/report.frx"); // Prepare and export pdf byte[] pdf; report.Prepare(); using (MemoryStream stream = new MemoryStrea…
-
If anyone is still having trouble with this, a fairly simple solution is to define the function yourself somewhere in your page before the report is rendered. At least until the fast-report people fix it. There is a fairly complete solution up o…