
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
You old Text object had the highlight condition, right? Something like if Value > 100 then make text color red. In this case I can reproduce the error.
-
I've tried to reproduce it in the Demo project (Demos\C#\Main); it has the business object datasource. private void CreateDataSources() { Â Â ... Â Â Category category = new Category("Beverages", "Soft drinks, coffees, teas, beers"); Â Â category.…
-
If you pass the connection object, it will be used in the "Data Wizard". You will be able to select tables in the existing connection, or create sql queries. You will not be able to select other connection (the first wizard page is disabled in this …
-
You can try to use the new property (added yesterday): Config.DesignerSettings.ApplicationConnection assign your application connection object (such as SqlConnection) to this property, and the report will use it when you invoke the "Data|Add Data …
-
I will add the Config.DesignerSettings.Text property in the next build. Example of use: Config.DesignerSettings.Text = "My Designer - ";
-
ok, I will add leading zero in case when checksum is turned off.
-
Hello, There is no way to change the title. If you need tight integration with your product, use FastReport.Net Professional with source code.
-
Could you send me a simple project that demonstrates this?
-
I've tried to reproduce the bug:
-
You may turn on CalcCheckSum, in this case it will add the checksum digit to the end of code (if code has odd number of digits), or replace the last digit (if code has even number of digits).
-
Hello, I will fix the CheckSum in the tomorrow's daily build. Also note that 2of5Interleaved code must contain even number of digits (if you provide odd number of digits, the last digit will be ignored).
-
Hello, Please read the programmer's manual, "Working with Windows Forms" chapter. Also look at flash-demo here: http://www.fast-report.com/frnet_swf/use_in_vs.html
-
That's not correct. You have to set the parameter's Expression property, instead of Value (which is set by SetParameterValue method). Correct code: Parameter parameter = report1.GetParameter("Grupo"); parameter.Expression = "[Products.Field1]";…
-
Hello, Please show how you do this. What do you pass in the parameter?
-
Of course you can, but the sort order is only ascending/descending.
-
Hello, No, it's not possible.
-
I'll start to implement it in the next week. I will let you know when I finish.
-
Hello, There is no ODBC support now; we will implement it later.
-
No, the chart option is not hidden, you will get an error. In order to build and/or view a report with charts, the 3.5sp1 framework is required.
-
Hello, If you want to use charts, you need .net fw 3.5sp1. You can still build for .net 2.0. Regarding the order: please ask ComponentSource, they should send you a license key.
-
Probably it's from your database server. May be it's related to command timeout. Try to increase the timeout value (CommandTimeout property of the connection object).
-
Hello Bryan, you are welcome!
-
Hello, The report does not contain any data. It contains datasource schema only. So I don't understand this: wrote: But its displaying the data directly from the test.frx file, instead of Dataset.
-
wrote: how can i make a datasource,and implement this in fast report. Sorry, I don't get the question. Please describe in details what you need to do.
-
Hello, It's by design limitations. I've stated in the user's manual: wrote: The report inheritance was designed to meet the following goal: save common report elements such as headers and footers in separate files, and reuse them in inherit…
-
Hello, Did you read the programmer's manual? It has several chapters about using FR in ASP.Net.
-
Hello, There is no .net equivalent for our FastReport Server product. You may create own web reporting system using WebReport component.
-
Hello, It depends on how fast the registrator will process your order. When we receive a confirmation, we will send you a key asap.
-
Hello, I will add the "Enable SSL" checkbox to the email settings dialog in the next daily build.
-
Hello, To change the line color, you should set "Back Color" (I will rename it to "Color" in the next build). The line width is "Border Width". Yes, not too clear, but it's how MS Chart Control works.