表生成器FastReport.Net常见问题解答(三)

Fastreport.NET在线购买价更低,专享85折起!赶紧加入购物清单吧!

相关内容推荐:

表生成器FastReport.Net常见问题解答(一)

表生成器FastReport.Net常见问题解答(二)

1.我的订阅已过期。在哪里可以下载产品的最新版本/span>

联系我们的在线客服,我们将为您提供最接近的版本。

2.如何在构建或查看 告时关闭ProgressForm/span>

您可以在EnvironmentSettings中关闭ProgressForm:

Report report = new Report();report.LoadPrepared(“ 1.fpx”);EnvironmentSettings s = new EnvironmentSettings();s.ReportSettings.ShowProgress = false;report.Show();

3.如何返回/重置默认的Designer设置/span>

您应该从C: Users “您的用户名” AppData Local FastReport文件夹中删除FastReport.config文件。

4.我不喜欢其中一种本地化版本的翻译。我该如何改善/span>

您可以在FastReports FastReport.Net Localization文件夹中找到所需的本地化* .frl文件并进行改进。向我们(support.fast-report.com)寻求英语本地化文件,如果所需文件中没有字段。根据英文版本添加字段。然后将您改进的翻译发送给我们并获得奖励! 

5.如何为所需的语言创建本地化/span>

给我们发送电子邮件至tz@fast-report.com或support.fast-report.com,我们将为您提供英语本地化文件以创建所需的本地化。将您的本地化文件(* .frl)发送给我们,我们会将其添加到新的版本中!

6.如何从代码中获取查询参数值/span>

您应该使用以下代码段:

Report.Dictionary.Connections [0] .Tables [0] .Parameters [0] .Value.ToString();

7.如何将HTML格式的 告嵌入消息中并使用代码通过电子邮件发送/span>
为此使用以下代码段:

Report report = new Report(); report.LoadPrepared("preparedreport.fpx"); HTMLExport htmlExport = new HTMLExport() { SubFolder = false, Navigator = false, Pictures = true, EmbedPictures = true, SinglePage = true, Layers = true, HasMultipleFiles = false }; EmailExport email = new EmailExport(); //email mailer settings email.Account.Address = "Email@gmail.com"; email.Account.Name = "Usename"; email.Account.Host = "smtp.yandex.ru"; email.Account.Port = 25; email.Account.UserName = "Email"; email.Account.Password = "password"; email.Account.MessageTemplate = "Test"; email.Account.EnableSSL = true; //email addressee settings email.Address = "Destinationaddress@gmail.com"; email.Subject = "Embedding of html"; email.Export = htmlExport; //Set export type email.SendEmail(report); //Send email

8.不支持 络演示

如果无法从Demos C# Web文件夹运行演示,则应:
1.修复NuGet软件包;
2.从“包”中添加所有必要的引用;

3.从根文件夹和视图中更改Web.Config中当前版本的构建版本。


还想要更多吗可以点击阅读【FastReport 表2020最新资源盘点】查找需要的教程资源。让人兴奋的是FastReport .NET正在 火热销售中!17周年庆惠享超低折扣,低至3701元起!>>查看价格详情

标签:

声明:本站部分文章及图片源自用户投稿,如本站任何资料有侵权请您尽早请联系jinwei@zod.com.cn进行处理,非常感谢!

上一篇 2021年1月11日
下一篇 2021年1月11日

相关推荐

发表回复

登录后才能评论