- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个现有的类结构,希望/需要将其用作使用 vb 和 2005 的一系列报告的数据源,(尽管我们几乎准备好转移到 2010 年,所以如果这能解决这个问题今天搬家!)
使用 gotreportviewer sample对于嵌套对象,我添加了一个 reportmanager 类,公开了一个 getdata 方法,该方法填充了我的所有数据并返回了一个列表(对象)。数据在那里并且在数据绑定(bind)点是正确的,我可以添加和引用顶级属性,但是无论我尝试什么语法我都无法引用嵌套类/列表中的字段。我收到各种消息,从输出字段中的“#Error”到什么都没有,再到无法编译。
我的类结构大致是这样的简短形式:
Assembly0
Class ReportManager
TheData as List(Of Object)
New() 'that populates TheData from the class structure below
GetData() as List(of Object)
Assembly1
Class Test
aProperty1 as String
aProperty2 as Int
aProperty3 as String
aProperty4 as String
aProperty4 as List(of aType1)
Assembly2
Class AaType1
aProperty1 as String
aProperty2 as Int
aProperty3 as String
aProperty4 as String
aProperty4 as List(of aType2)
aProperty4 as List(of aType3)
aProperty4 as String
Assembly3
Class aType2
aProperty1 as Boolean
aProperty1 as String
you get the idea
and so on.....
在我的主应用中
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
' Create an instance of our ReportManager Class
Try
' trust assemblies used in get data
ReportViewer1.LocalReport.ExecuteReportInCurrentAppDomain(Assembly.GetExecutingAssembly().Evidence)
ReportViewer1.LocalReport.AddTrustedCodeModuleInCurrentAppDomain("assy1, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1234")
ReportViewer1.LocalReport.AddTrustedCodeModuleInCurrentAppDomain("assy2, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1234")
' etc through ALL dependant assemblies
' create datamanager, that will populate its TheData property
Dim reportMan As Data.Reporting.Manager = New Data.Reporting.Manager(18) ' test id sent
' this is the method from the gotreportviewer sample, which only allows you to reference top level properties, regardless of syntax used. i.e. =Fields!Prop.Value.SubProp
' doesnt work
'ReportViewer1.LocalReport.DataSources.Add(New ReportDataSource("DummyDataSource", reportMan.GetData))
'Me.ReportingDataBindingSource.DataSource = reportMan.GetData
' this is the only method I have found that allows me to reference an objects nested property and its fields.....?
Data = reportMan.GetData()
Me.ReportViewer1.ProcessingMode = Microsoft.Reporting.WinForms.ProcessingMode.Local
Me.ReportViewer1.LocalReport.DataSources.Add(New ReportDataSource("Data_Reporting_ReportingData", Data))
' fortnatley there is only ever one test in the list, HOWEVER there will be 4 specimens and n stages below that and so on..
Dim SpecimenData As SpecimenList = Data(0).Specimens
Me.ReportViewer1.LocalReport.DataSources.Add(New ReportDataSource("Tests_Specimen", SpecimenData))
' so this method is no good either. currently only a test its just returning the first specimen.
'Dim StageData As Tests.Stages = Data(0).Specimens(0).Stages
'Me.ReportViewer1.LocalReport.DataSources.Add(New ReportDataSource("Tests_Specimen", SpecimenData))
' render report
Me.ReportViewer1.RefreshReport()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
结束子
我在网上/谷歌上找到的修复:
您必须添加“ExecuteReportInCurrentAppDomain”,这样做没有区别。
你必须添加程序集:AllowPartiallyTrustedCallers() 到 AssemblyInfo.vb,没有区别。
你必须强烈命名你的依赖程序集,这样做并且它确实摆脱了关于在报告的“代码”属性中进行的调用的错误(用于本地化)。
已尝试 =Fields!Property.Value.SubProperty 语法,但它不起作用!无论我尝试什么变化。
' 在 rdlc 中 - 此语法适用于顶级属性
=Sum(Fields!TestVersion.Value, "Data_Reporting_ReportingData")
' 在上面的代码中使用替代方法列表是可行的
=First(Fields!Index.Value, "Tests_Specimen")
' 但这些不是它的子属性
=First(Fields!Specimens.Value.Index, "Data_Reporting_ReportingData")
=Fields!Specimens.Value.Index
=Fields!Specimens.Value.Index.Value
这是否意味着我别无选择,只能创建类似Dim SpecimenData As Tests.SpecimenList = Data(0).Specimens 每个嵌套对象?同样出于明显的原因,我宁愿不必展平整个数据结构,因为它很大。
我已经尝试了所有我能找到的关于这个的东西,没有太多东西,所有东西都指向同样的三四篇文章/博客帖子,这些文章/博客帖子对我不起作用,他们的样本未经修改就可以工作,但是当适用于嵌套列表或继承列表类型的嵌套对象。
有没有人有使用带有嵌套列表的对象的实际工作的示例代码?因为除了最简单的场景之外,我找不到任何在线工作。即一个程序集或一个代码文件或无嵌套列表或简单/ native 类型。
这是我一周中最精彩的部分!我现在秃顶,压力很大,请帮忙。
没有人能推荐一个支持这种东西的第三方供应商吗? Crystal 吗?鹅卵石?
为文字墙道歉...马特玛
最佳答案
我正在寻找几乎相同的东西,除了我有具有其他对象属性的对象,没有对象列表,无论如何,你问过 Crystal Reports 是否做这种事情,是的,它做,做起来有点困难,但确实如此。
我不知道为什么现在很难用这种想法工作。因为我们一直在使用持久性框架,比如 Entity Framework 和其他框架,所以,你用持久性做一个 hell 般的工作,当你去报告时,如果你想轻松工作,你需要回到你的数据库模型! 太浪费时间了!
我刚刚发现,可以在报表查看器中执行此操作,但它在 visual studio 2010 中有问题,它已在 SP1 中修复,但您需要设置所有用作可序列化的嵌套对象
请阅读:http://wraithnath.blogspot.com.br/2011/04/reportviewer-object-datasource-nested.html
关于vb.net - 报表查看器 - 具有嵌套列表对象的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3118737/
我之前让 dll 注入(inject)器变得简单,但我有 Windows 7,我用 C# 和 C++ 做了它,它工作得很好!但是现在当我在 Windows 8 中尝试相同的代码时,它似乎没有以正确的方
我正在尝试制作一个名为 core-splitter 的元素,该元素在 1.0 中已弃用,因为它在我们的项目中起着关键作用。 如果您不知道 core-splitter 的作用,我可以提供一个简短的描述。
我有几个不同的蜘蛛,想一次运行所有它们。基于 this和 this ,我可以在同一个进程中运行多个蜘蛛。但是,我不知道如何设计一个信号系统来在所有蜘蛛都完成后停止 react 器。 我试过了: cra
有没有办法在达到特定条件时停止扭曲 react 器。例如,如果一个变量被设置为某个值,那么 react 器应该停止吗? 最佳答案 理想情况下,您不会将变量设置为一个值并停止 react 器,而是调用
https://code.angularjs.org/1.0.0rc9/angular-1.0.0rc9.js 上面的链接定义了外部js文件,我不知道Angular-1.0.0rc9.js的注入(in
我正在尝试运行一个函数并将服务注入(inject)其中。我认为这可以使用 $injector 轻松完成.所以我尝试了以下(简化示例): angular.injector().invoke( [ "$q
在 google Guice 中,我可以使用函数 createInjector 创建基于多个模块的注入(inject)器。 因为我使用 GWT.create 在 GoogleGin 中实例化注入(in
我在 ASP.NET Core 1.1 解决方案中使用配置绑定(bind)。基本上,我在“ConfigureServices Startup”部分中有一些用于绑定(bind)的简单代码,如下所示: s
我在 Spring MVC 中设置 initBinder 时遇到一些问题。我有一个 ModelAttribute,它有一个有时会显示的字段。 public class Model { privat
我正在尝试通过jquery post发布knockoutjs View 模型 var $form = $('#barcodeTemplate form'); var data = ko.toJS(vm
如何为包含多态对象集合的复杂模型编写自定义模型绑定(bind)程序? 我有下一个模型结构: public class CustomAttributeValueViewModel { publi
您好,我正在尝试实现我在 this article 中找到的扩展方法对于简单的注入(inject)器,因为它不支持开箱即用的特定构造函数的注册。 根据这篇文章,我需要用一个假的委托(delegate)
你好,我想自动注册我的依赖项。 我现在拥有的是: public interface IRepository where T : class public interface IFolderReposi
我正在使用 Jasmine 测试一些 Angular.js 代码。为此,我需要一个 Angular 注入(inject)器: var injector = angular.injector(['ng'
我正在使用 Matlab 代码生成器。不可能包含代码风格指南。这就是为什么我正在寻找一个工具来“ reshape ”、重命名和重新格式化生成的代码,根据我的: 功能横幅约定 文件横幅约定 命名约定 等
这个问题在这里已经有了答案: Where and why do I have to put the "template" and "typename" keywords? (8 个答案) 关闭 8
我开发了一种工具,可以更改某些程序的外观。为此,我需要在某些进程中注入(inject)一个 dll。 现在我基本上使用这个 approach .问题通常是人们无法注入(inject) dll,因为他们
我想使用 swing、spring 和 hibernate 编写一个 java 应用程序。 我想使用数据绑定(bind)器用 bean 的值填充 gui,并且我还希望它反射(reflect) gui
我有这段代码,当两个蜘蛛完成后,程序仍在运行。 #!C:\Python27\python.exe from twisted.internet import reactor from scrapy.cr
要点是 Spring Batch (v2) 测试框架具有带有 @Autowired 注释的 JobLauncherTestUtils.setJob。我们的测试套件有多个 Job 类提供者。因为这个类不
我是一名优秀的程序员,十分优秀!