report

X++ passing current selected records in a form for your report

柔情痞子 提交于 2019-12-07 05:47:44
问题 I am trying to make this question sound as clear as possible. Basically, I have created a report, and it now exists as a menuitem button so that the report can run off the form. What I would like to do, is be able to multi-select records, then when I click on my button to run my report, the current selected records are passed into the dialog form (filter screen) that appears. I have tried to do this using the same methods as with the SaleLinesEdit form, but had no success. If anyone could

Crystal Reports XI hangs when opening a report

ⅰ亾dé卋堺 提交于 2019-12-07 04:48:38
问题 I am trying to open a report in Crystal Report 11 Designer (product version 11.5.8.826), but it seems to freeze up. This report use to work fine, but today the client could not load the report. I also tried to open the report on another developer's workstation, with the same result. Has this happened to anyone else? 回答1: In the page setup menu, you can check the No Printer checkbox and it will no longer have the delay of looking for a printer on the network. I find it often useful to start a

Crystal reports - close the database connection

北城余情 提交于 2019-12-07 03:26:58
问题 This is in C#, Visual Studio 2008, crystal reports that came with VS2008 I've got a crystal report viewer form that resides in a DLL. The DLL is responsible for loading the crystal report (based on report filename), and displaying the report on the form. When I'm done with the crystal report, i call dispose on the loaded reportdocument object. However, the database connection remains. Crystal seems to detect that there are other connections (from my main application) to the same database, and

Generating lists/reports with in-line summaries in Django

让人想犯罪 __ 提交于 2019-12-07 03:12:57
问题 I am trying to write a view that will generate a report which displays all Items within my Inventory system, and provide summaries at a certain point. This report is purely just an HTML template by the way. In my case, each Item is part of an Order. An Order can have several items, and I want to be able to display SUM based summaries after the end of each order. So the report kind of looks like this: Order #25 <Qty> <Qty Sold> <Cost> <Cost Value> Some Item 2 1 29.99 29.99 Another Item 4 0 10

How can I append multiple reports together?

早过忘川 提交于 2019-12-07 02:35:31
问题 I have a number of reports that need to be both run separately and also as a group. I've created these reports and was hoping I could just create a form where I could just append report1, report2, report3, etc. together without creating a different report and making all of those reports subreports. Is this possible? Edit: I'm displaying it in the .NET WinForms control, but it will also be exported to PDF and perhaps DOC, XLS etc... 回答1: Create a third report that has the first N reports setup

Set a selection of text to bold inside a RichTextBox

大憨熊 提交于 2019-12-06 21:57:34
In an MS-Access RichTextBox on a Report, I want to make a selection of the text bold. I found this post on a forum which explains how to do this in VB6. I tried the same in MS-Access, both with a normal Access textbox with the Text Format property set to Rich Text and a Microsoft Forms 2.0 TextBox added via the ActiveX Controls dialogue box, neither works. I know VBA is based heavily on VB6 so my logic is if it can be done in VB6, I should be able to do it in Access. Am I right? Is it possible to set a selection of text to bold inside a RichTextBox on MS-Access? You do not mention the version

Microsoft.Reporting does not exist in namespace

[亡魂溺海] 提交于 2019-12-06 21:12:58
问题 I have developed project in VS2010 and now I want to continue same project with VS2012 but I'm getting Error: Microsoft:Reporting does not exists in namespace I am using Microsoft Reports for developing reports. Please Help me if you have any solution. 回答1: Search for "reportviewer" in Nuget. Install the Microsoft.ReportViewer.WebForms VS2010 package. 回答2: You must right-click on References folder in your project and click on Add Reference . and then go to Assemblies > Extensions > Microsoft

UVM基础之---------Reporting Classes

最后都变了- 提交于 2019-12-06 19:23:31
Reporting 类提供了一组工具用于格式化报告输出 report机制大概包括四个主要的类uvm_report_object,uvm_report_handler, uvm_report_server,uvm_report_catcher, UVM reporting主要的接口是uvm_report_object(这是一个接口类),这是uvm_components的父类。 uvm_report_object通过 内部的function调用 uvm_report_handler的function来执行大部分的工作。 uvm_report_handler存储了对消息的显示和处理的一些配置信息,他对消息的处理进行决策,并对消息进行一些格式化,过滤等。最终消息被将被uvm_report_handler送到uvm_report_server。而uvm_report_catcher实际上就是一个uvm_report_cb,他对特定的uvm_report_object发出的消息进行抓取。 下图是reporting类的继承关系: uvm_report_object: 1. 通过此接口,组件发起发生在仿真过程中的各种message。 Users can configure what actions are taken and what file(s) are output for

uvm设计分析——report

空扰寡人 提交于 2019-12-06 19:21:40
uvm_report实现中的类图,如下:          1)uvm_component均从uvm_report_object extend而来,其中定义了report_warning,error,info,fatal等方法接口;   2)uvm_report_message和uvm_report_handle,是一个中介者的角色,实现调用接口和实现的分离;将report信息,     打包成一个message的对象;并处理各种severity的override;   3)uvm_report_server,实现该message具体的uvm_action;   4)uvm_report_catcher,作为访问者,在tb top对某个id,serverity,verbosity的message进行处理,catch或throw; uvm_report_object中实现了report的调用接口,以及report_handle的变量;            report_object和report_handle是绑定的关系,两者是互相composite的,object_report提供给用户的有两 类function:     1)info,warning等调用function,其中verbosity在report_object中是被固定住的。         error---

关于uvm report机制

本秂侑毒 提交于 2019-12-06 19:21:11
zz: http://bbs.eetop.cn/thread-447424-1-1.html 首先,提一个看似简单的问题:在使用uvm的做验证的时候,经常需要打印信息,比较常用的可能就是`uvm_info 和uvm_report_info之类的了,那么`uvm_info 和 uvm_report_info之间有没有什么区别呢? 下面是`uvm_info的宏展开: 108 `define uvm_info(ID,MSG,VERBOSITY) 109 begin 110 if (uvm_report_enabled(VERBOSITY,UVM_INFO,ID)) 111 uvm_report_info (ID, MSG, VERBOSITY, `uvm_file, `uvm_line); 112 end 可以看出`uvm_info宏就是调用了uvm_report_enabled function做了一个verbosity_level和action的判断其是否允许进行report操作。关于action和verboisty_level在uvm中可以对其进行很精细的控制,如下面所示: 1)action设置:从上到下,范围由小到大,精细度由高到低,判别优先级由高到低 (severity, id) id -> action severity 2)verbosity设置:从上到下, 范围由小到大