Default Avatar

pinbot

pinbot

About

Username
pinbot
Location
Texas
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Alex, You are correct. I looked at my IIS settings for the application pool and that application is a web garden. Is there a fix for FR.Net to store the state information somewhere else or do I need to limit my application pool to 1 instanc…
  • Thanks Alex, Not on this particular application (although I have used FR.NET on some web gardens). It's in an application that uses an Ajax Update Panel. I'll try moving outside of the update panel and let you know.
  • Thanks for the quick reply. I didn't think you were. I'll see if I can make my new fax server accept the PDF exports from FR.Net like my old one. Or just use any of the "Fake Printer" PostScript creators.
  • Hey Alex, I know this thread is over 2 years old but have new question regarding it. Seems like my fax server starting accepting the PDF files generated by FR.Net. Now I'm building a new Fax server and am having conversion problems that I d…
  • I do something similar except that I call a special thumnail URL to resize the picture before placing in on the report. Add an PictureObject on your report. Select it. Create a "BeforePrint" event handler. Here is my handler. It reads the U…
  • It's fairly easy. Create your sql like this in your c# code: string sql="select xxx from yyy where ...."; then replace the SQL Select Command in the FastReport table data source object: (this is from working code): FastReport.Utils.…
  • I don't think you need a column footer just a "Footer" band or "Group Footer" band. Click on "Configure Bands...", select your data band and click on the "Add" button. Select "Footer" from the list. Put your total in that new band which will …
  • I know how you feel. I thought the same thing since I didn't see any new versions in my control panel. Turns out my subscription expired so the newer versions were not showing up. After I renewed my subscription (for $109) once again the new …
  • What I've done in similar instances is to create the SQL for my dataset on the fly and then replace the SQL in the dataset. I also pass some parameters. FastReport.Data.TableDataSource tds = (FastReport.Data.TableDataSource) Rpt.GetDataSourc…
  • Why would you not want the latest version?
  • I think you will at least have to create a dummy database so the designer can know field names, types, etc. Create a databaase that mirrors what you will be creating at run time and point the connection string to that. You might want to put in …
  • I tried that too and it won't work. Re-read the documentation: Passing a value to a report parameter To pass a value to the report parameter, use the SetParameterValue method of the Report object. This method was described in details in th…
  • What is it you are trying to accomplish? Remove the blank space if there is no data? Make the summary always appear even if there is 7 rows of data? Is it ALWAYS 6 or 7 rows of data? You could always make the Summary section smaller …
  • Create a parameter in FR.Net Test your report with default parameters. When ready to pass from C#, do something like this (this is from a asp.net web page that returns a FR exported pdf but you get the idea): FastReport.Report Rpt =…
  • There is a "NullValue" property you can set to display a specific value when the data is null.
  • Hey Jordan, I haven't been on here in ages. In case you haven't found the solution yet, you need to set a property: FastReport.Utils.Config.WebMode=true; That will prevent it from trying to read that file. Bryan
  • More Info... On my development machine, if I use the ASP.NET development server, it works ok. If I try to use IIS on my local development machine I get a 404 error, page not found when trying to export, just like when I put my application in p…
  • Thanks. I guess I didn't drill down far enough. Bryan
  • What's the namespace/usage? In Visual Studio 2008, when I type "fastreport.export.", the list of exports does not seem to include a specific xlsx export.
  • That's what it was. The page width was way too big. I trimmed it down some and that fixed the problem. I guess the blank column that FR was inserting was too big. The reason I didn't notice it is because this report is only exported to excel…
  • Attached. If you export from FR with this file, you'll see the warning in Excel. This is a report created on-the-fly on an .aspx page and then exported. How do you export to excel2007? Is it still xml or is there a different fastreport…
  • I found that if I do: Response.ContentType = "multipart/related; type=\"text/html\";"; Response.AddHeader("Content-Disposition", "inline;filename=propinfo.mht"); It works VERY well. Thanks.
  • I set the URL to a static value to test. It works in the preview window but not the exported PDF file. Do I need to set any options in my PDF export object? FR.Net 1.3.27
  • Also, I can do HTML export just fine too but the pictures don't show up so I was trying as a MHT export to embed the pictures in the page.
  • That was it. Thanks! I noticed that when printing the report, the progress event is called twice for each page. I've attached a picture of the progress page. Looks much nicer showing how many pages have been generated. This report can be …
  • hmm. I even tried: FastReport.Utils.Config.ReportSettings.Progress += new ProgressEventHandler(this.ReportSettings_Progress); To point to the local instance of my event handler. Does my event handler have to be in the FastReports namespa…
  • Thanks. I should have seen my "FastReports.Utils.Config.Webmode".... I have this in my thread. FastReport.Utils.Config.WebMode = true; FastReport.Utils.Config.ReportSettings.Progress += new ProgressEventHandler(ReportSettings_Progress); …
  • What is the scope of "Config"? I'm using this outside of the report scripting. In my ASP.Net web page Page_Load I use: FastReport.Utils.Config.WebMode = true; FastReport.Report Rpt = new FastReport.Report(); Rpt.Load(this.Page.Serve…
  • Answered my own question! In my group header OAP, I set the child visible=false (so if the group overflows the page, the child will not show up on the next page) In my group footer OAP, I set the child visible=true Works like a charm.
  • I would test by putting all 4 columns in the databand and see if you get the same dataset as running the SP on the server. I do this sometimes. Also, another trick is to edit the datasource in FR and run through the wizard to make sure it picks …