SSRS:如何以编程方式修改文本内容?
我有一个使用报表查看器的 Windows 窗体应用程序。我有一个文本标签,我想根据数据更改它。有办法做到这一点吗?
编辑:澄清一下 - 文本字符串不是直接来自数据库,而是基于数据库中的标志。
I have a Windows Forms application, using a Report Viewer. I have a text label that I'd like to change based on the data. Is there a way to do this?
EDIT: To clarify - the text string is not directly from the database but is based on a flag in the database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用文本框中的公式来完成此操作。根据您的需要,这可能是一个简单的 IIF 或一个 select case 语句。要将公式放入文本框中,只需右键单击该框并选择属性,在常规选项卡下有一个字段,显示值,旁边带有“FX”符号。如果你点击它,它会向你显示公式编辑器
(在有人说我知道它不是真正的FX之前,但我懒得去寻找字体/代码来获取公式符号!)
You could do this with a formula in the text box. Depending on what you need that could be a simple IIF or a select case statement. To put a formula into a text box just right click on the box and select properties, under the general tab there is a field that says value with a “FX” symbol next to it. If you click on that it will show you the formula editor
(Before anyone says I know its not really FX but I cant be bothered to find the font/code to get the formula symbol!)