Default Avatar

pinbot

pinbot

About

Username
pinbot
Location
Texas
Joined
Visits
0
Last Active
Roles
Members

Comments

  • Let me add a reply here. I actually tried this last week and it won't work (unless you do some major .net coding to save/restore the current dataset record position at the beginning/end of the subreports). When your first subreport runs it ite…
  • I'm not Alex but I can answer this one. Did you mean (from) .fr3? instead of .frx? There is an excellent converter (fr3tofrx.exe) that will convert the file to the newer .frx format. It does not do eveything. You will need to redo all your…
  • I had a similar problem. When I opened FR.net designer, it would not appear anywhere on the screen. I had to open 2 of them and then finagle the taskbar preview under windows 7 so I could select "maximize" on the invisible window. Deleting …
  • Yes. I believe that fixed it for me as well. I should have posted that earlier. Bryan
  • Now why didn't I think of that! (slaps head). Adding a non-connected databand did the trick. Thanks! Bryan
  • What band can I put it in then? This is on page 46 of a long report, all of which have page headers. If I put it on a "report title" band, it prints BEFORE the page header of the page it's on. I have a uniform page header on every page. I …
  • Nevermind. Writing it this way works: AddMonths([Date],-1) When I double-clicked on the "AddMonths" function from the list it inserted: [AddMonths(,)] So I figured it needed the outer brackets.
  • Thanks! also, Thank you for removing the "x" next to the tab arrows.
  • That'll be great. We still need the arrows, just hide the delete button.
  • AlexTZ wrote: » Probably I misunderstood something, but there is only one button that deletes the page - it is on the toolbar and is not easy to hit. And you always may undo ANY operation, including the page delete. Here is a pic of the de…
  • 2) I was trying to follow the example in the fr.net user's manual. I'd like to have a consistent header/footer on every page of my report which has about 8 template pages right now, and I'm adding more. You're saying I need 8 template pages i…
  • Also, When I add a page to an inherited report, how come it does not inherit the header/footer from the base report? Only the first template page follows the base report? Bryan
  • Thanks! That did it.
  • AlexTZ wrote: » AlexTZ wrote: » The only thing that would make it so much better is to be able to *INSERT* a row or column. Not just have to put it at the bottom, or right edge. Just select a row/column and right-click it to display the…
  • BTW I have a console app that DOES work with a FR.NET report with graphs by copying the datavisualization dll to the executable folder. It's just this asp.net app that it is not working. Bryan
  • Here is the error in VS 2008 and my bin folder.
  • I'm having this same problem. VS2008. FR.NET 1.2.35, ASP.NET web form. I've copied the system.windows.forms.datavisualization.dll from the FR.NET folder to my apps \bin folder. The other FR.NET dlls are already in the \bin folder. Bry…
  • ok. Thanks for the explanation. Seems strange that you cannot create a custom palette for values.
  • Success!!!! You're code for converting the data color from the data field did the trick. I put this as the expression for the series color: new ColorConverter().ConvertFromInvariantString([SOP.BarColor]) All I really wanted was the first…
  • You can see this behaviour in FR DEMO. 1. Edit the Microsoft Chart Sample. 2. On the Revenue chart, the default is that all the data points are the same color. 3. Double click on the revenue chart. Select Series1. 4. Select the Fills&…
  • That's what the documentation says. But if I select ANY other built-in palette, it DOES color each data point in the series. (see the second graph which is from the same data set). Both graphs only have 1 series. The 1st one I set the palette …
  • Ok Last question, :-) And this may be a chart question outside the scope of this forum. How come when I select the "excel" palette, it colors each bar in the series (bottom chart) but when I create my own palette (with 16 colors), and selec…
  • Also, What is the correct "Using" statement to access/cast an MSChartObject in script?
  • Actually, I found a way to make FR order it the way I want. Two other fields in the data set determine the order I want (a Master [1char]/Second sort[3char]). I simply created my label as the contatenation of these integer fields converted to st…
  • oops, forgot the picture of what I want!
  • Samir, I know what you are talking about. I used to use CR until I switched to FR. With FR, it is not necessary to explicitly link data from the main report to the subreport. Subreports have access to all the data/variables in the main repor…
  • The converter is excellant. I've converted a report that had several hundred text objects and it worked great. Alex is correct, though. There is always some needed manual changes. The biggest change that I've found is that the Data Tab obj…
  • Thank you for looking into it. I found out that I can click the RIGHT mouse button while pasting and it pastes ok. If I click the left button to paste, it disappears. Very strange. At leaste I have a workaround.
  • Alex, I put a StartReport event in the report script and tried to open a text file for logging. When I click on Preview in the designer, I get an Access Denied exception. Screen capture attached. What the best way to capture debugging in…