
AlexTZ
AlexTZ
About
- Username
- AlexTZ
- Joined
- Visits
- 0
- Last Active
- Roles
- FR Team
Comments
-
You can't pass multiple values to a query parameter. See the following topic: http://www.fast-report.com/en/forum/?p=/discussion/5690
-
Hello, The problem is fixed, you can use the current build.
-
Sorry, I've edited my post, now it's ok.
-
There is no public property of the TextBoxControl, but you may use the script and access the TextBox winform's control: Text1.TextBox.AutoCompleteMode = ...; Text1.TextBox.AutoCompleteSource = ...; (see more details here: http://fast-report.com/…
-
To pass a value to the query parameter, use the technique described in the following article: http://fast-report.com/documentation/UserM...passvalueto.htm If you want to form a SQL text dynamically, use the following code: TableDataSource tabl…
-
Did you read the manual? - add a new parameter; - set up its properties (Name, DataType, DefaultValue, Expression).
-
It's because you don't declare parameters! If your SQL text has parameters, you have to declare them as described in the user's manual.
-
Yes, you may use something like select * from table where field in (@param1, @param2)
-
Sorry, I have no example. This documentation article shows how to create a parameter and define its properties.
-
Hello, Please read the user's manual: http://fast-report.com/documentation/UserM...yparameters.htm
-
Hello, You should call LoadLocale method before opening a designer (or before creating the DesignerControl).
-
Hello, You may pass parameters via http url Response.Redirect("page2.aspx?myname=" + txtName.Text); and handle it in the StartReport event: string myname =""; if (Request["myname"] != null) myname = Request.QueryString["myname"]; WebRep…
-
MS Word is not .net app. Try to run the attached example and print. Are you able to do that?
-
Your report has the following structure: Group + Master-detail-subdetail. All databands are connected to the same datasource (which is not correct, you have to use different datasources for each databand). You are trying to print the data column fr…
-
I will let you know when we fix the problem.
-
Hello, What is your OS? Are you able to print from other .net applications?
-
Sorry, I can't tell the timeframe now. This is a very complex task.
-
Please send me the prepared report file (.fpx, save from preview) to tz@fast-report.com.
-
Hello, You can't join prepared reports. You may join several reports into one using the following code: Report report = new Report(); report.Load("report1.frx"); report.Prepare(); report.Load("report2.frx"); report.Prepare(true); report.ShowPre…
-
WebReport does not support dialogs; it is winforms-only feature. We plan to add support for dialogs in further versions.
-
Hello, There is no problem to print group condition in the group footer. See the attached report, you can run it in the demo.exe.
-
Use the following code: ComboBox1.DataColumn = "StockTable.BrandCode"; ComboBox1.FillData();
-
Hello, Please provide more details, what you need to do?
-
Sorry, the correct code is FastReport.Utils.Config.ReportSettings.DatabaseLogin += ... You may call this code in the Page.Load event, but it is better to change the connection string in the WebReport.StartReport event: WebReport1.Report.Dic…
-
Ok, call the following code: FastReport.Utils.Config.PreviewSettings.Buttons = PreviewButtons.All & ~PreviewButtons.Edit;
-
Sorry, I don't understand your question. To run the report designer, you need to call the following code: using (Report report = new Report()) { Â Â report.Load(...); Â Â report.Design(); } If you don't need the designer, don't call this cod…
-
You may use the following code: FastReport.Utils.Config.DatabaseLogin += new DatabaseLoginEventHandler(DatabaseLogin); private void DatabaseLogin(object sender, DatabaseLoginEventArgs e) { Â Â e.ConnectionString = CONN; }
-
Hello, Are you using the registered version of FastReport.Net? If so, delete old FastReport dlls from your project and recompile it.
-
Hello, Just don't call the designer from your app.
-
Hello, Use the following code to add a new tab to the preview control: report.Load(...) report.Prepare() previewControl1.AddTab(report, "tab title")