 |
|
 |
Is this limited to VS 2005 and later? I have VS.net and SQL 2005 with report server running. My boss only recently decided we needed to write a new app in house to replace the third party app. It needs to have reporting. All I has is vb.net if this doesn't work with vb.net is there any thing that does that won't cost hundreds of $$?
|
|
|
|
 |
|
 |
Hi,
I have a web service which will populate the pre-designed datasets and many client end apps will generate reports.
When deploying the apps what are the requirements? Do they need anything more than .net platform v3.5
????
All my proccessing will be done on the server end (web service) and my client apps will be used for report generation (and data entry).
Alert "Please take time to read my posts"
|
|
|
|
 |
|
|
 |
|
 |
When i hosted my website which contain many pages with reportviewer, i got a security error,
how can i resolve this problem?
giving up is not an option
|
|
|
|
 |
|
 |
hi, it is error to build the programme , for this class 'ReportGenerator' can't not be found.
|
|
|
|
 |
|
 |
Assume i provide my dataset directly as you had explained in another thread.
Can't i eliminate the xsd creation & keep unbound fields in the report like =Fields(0).Value, =Fields(1).Value & so on? It would be just like good[or bad] old VB6.
If not possible, can i at least just drop the xsd schema file from deploying, or even remove it from the project after i create the report?
Strogg
|
|
|
|
 |
|
 |
Hello Dimitar
Sorry to bring this up again, but I needed some help.
1. Suppose I create the DataSet through code (as you've shown in the earlier thread); and then drag-drop unbound fields onto the report designer and thereafter bind to DataSet / Tables / Columns later, at run-time?
Is this possible?
2. I am writing a VB.NET Windows Forms app - if point # 1 is possible, could you please point me to some VB code for the same?
Thanks
RV
|
|
|
|
 |
|
 |
The easiest way to generate a simple RDLC from a dataset is transform the schema xml into the RDLC.
The basic idea is to build rather generic RLDC file off a DataSet. You can then bind both the DataSet and the RDLC to a ReportViewer control and get your report. I generate the RDLC by transforming the DataSet XML schema into a RDLC file via and XSLT transform.
Here is a website showing the C# code and the XSLT...
http://csharpshooter.blogspot.com/2007/08/revised-dynamic-rdlc-generation.html
|
|
|
|
 |
|
 |
Hello ,
I have param DateTime - which is visualed as Calendar, I don't like visual style of
calendar for example (started from Sunday ),I want to start from Monday ( like set datefirst 1 in MSSQL). Can I modify style of Calendar
Best Wishes
|
|
|
|
 |
|
 |
Hello. In your first step, you indicate "We may skip this stage and provide directly our dataset to the report engine" when refering to creating the report's dataset. How is this done? Is there a way to create a dataset for the report in code and not have to create separate dataset definition file?
Thanks
|
|
|
|
 |
|
 |
Dear Aguidas,
This article [http://www.knowdotnet.com/articles/customdataset.html] describe basically how to create an data set from your code. I hope the source below to help you.
using System;
using System.Data;
namespace DictatePro
{
///
/// Summary description for patientDataSet.
///
public class CodeBasedDataSet
{
public patientDataSet(){}
public static DataSet CreateDataSet()
{
// Delcare a DataSet and Table
DataSet ds;
System.Data.DataTable dt;
ds = new DataSet();
dt = new DataTable();
// Declare your Columns - for brevity sake I went with the LameO
// constructors, but you can (and should) get more specific
DataColumn LastName;
DataColumn FirstName;
DataColumn WT;
DataColumn Desc;
// Initialize the columns
LastName = new DataColumn("LastName");
FirstName = new DataColumn("FirstName");
WT =new DataColumn("WT");
Desc = new DataColumn("Desc");
// Add them to your DataTable
dt.Columns.Add(LastName);
dt.Columns.Add(FirstName);
dt.Columns.Add(WT);
dt.Columns.Add(Desc);
// Add the DataTable to your DataSet
ds.Tables.Add(dt);
// it's ready to run
return ds;
}
}
}
Faithfully yours,
Madjarov.D.N
|
|
|
|
 |
|
 |
I've been fighting with trying to do this exact same thing for 2 days when I stumbled across this article. Thanks for posting.
|
|
|
|
 |
|
 |
Dear Ron Icard,
Thank you for your kind message. I am preparing a new article for local report engine and I will send it after one or two months. Unfortunately I have not enough time but I am sure that this new article will be interesting for you and many other guys.
Faithully yours,
Madjarov.D.N
|
|
|
|
 |
|
 |
Very Good stuff, I've downloaded the project etc... How do i use this? 'No database included?' I have a similar project but cant seem to get the report working. The notes are not very helpful but good stuff though.
Kind Regards
Femi Ojemuyiwa BSc.
|
|
|
|
 |
|
 |
How do i hide or show columns in Table embeded in rdlc file?
I want to give users option to add or delete columns from a displayed report? can you provide any help on this please?
Thanks & Regards
Raghs
|
|
|
|
 |
|
 |
Hi EveryBody,
I would like to do some server reporting, where I will take data from server and make the report. and I got some question
1. Do I Need SQL SERVER REPORTING service to make the report.
2. Can I use Microsoft Reporting Service which is included with VS 2005
Currently Im using VS2005-->>ASP.NET-->>REPORT.RDLC
could you plz tell me that am I on right way of wrong way?
One the otherhand do I need to install Microsoft Report Service on server which is REPORT VIEWER
Sarfarj Ahmed
|
|
|
|
 |
|
 |
Dear Sarfarj Ahmed,
In this case you do not needs from Microsoft SQL Reporting services.
You may use directly and only Microsoft Reporting Service which is included with VS 2005.
Faithfully yours,
Madjarov.D.N
|
|
|
|
 |
|
 |
The article is great but how do I make it work with a custom business entity. I have a business layer project that returns custom business entity collection. How do I use the dynamic reports concept with my custome business objects? I've spend the last 4 days trying to make this work and I'm now totally frustrated. Any help would be much appreciated.
|
|
|
|
 |
|
 |
Hi,
I need to create a report dynamically at runtime where the user creates the query, decides the filters and finally clicks to get a report. Is that possible in VS2003 and SQL Reporting Services2000 where reportviewer control in not incorporated??
Please suggest as this is really urgent.
Thanks and regards,
ROHIT BANERJEE
PROGRAMMER ANALYST
Cognizant Technology Solutions.
HINJEWADI,PUNE
email_id:saheb_rohit@yahoo.co.in
phone no:9890474139
|
|
|
|
 |
|
 |
Dear BANERJEE,
Unfortunately this is not possible with VS2003 and SQL Reporting Services2000.
But it is possible to develop separate ASP.NET Project with MSVS 2005 and incorporate in MS FremaWork 2.o reporting engine and to use it in yours MS VS 2003 Project as separate Virtual Site in IIS and exchange parameters via URL.
This is possible and correct working technic/trick.
I use this scheme in our old ASP.NET Framework 1.1/MS VS 2003 projects.
I hope this trick to solve your problem.
I wish you happy new year and health through whole new 2007.
Faithfully yours,
Madjarov.D.N
|
|
|
|
 |
|
 |
good morning sir,
This is vijitha,would like to ask you some question related to your topic,as iam also doing a project called report engine 1.0.ihave four modules in it,would like you to tell me what else could be added.
thanking you
vijitha
|
|
|
|
 |
|
 |
Dear Vijitha28,
The local Microsoft report engine needs only from Microsoft Frame Work 2 to working well.
You do not need from anything else as special upgrades or extra assemblies.
Faithfully yours,
Madjarov.D.N
|
|
|
|
 |
|
|
 |
|
 |
Dear Hartman,
I have not experience in applications where Local Report Engine of Microsoft works under web farm.
I am so sorry but unfortunately I can not help you.
In all my ASP.NET projects up to now I always use only one single machine.
When I need from more power and flexibility I just devide the project of separate web sub sites and put them on different computers and use a database or URL's parameters to exchange information between separated sites.
Faithfully yours,
Madjarov.D.N
-- modified at 3:13 Wednesday 13th December, 2006
Dimitar Madjarov
|
|
|
|
 |
|
 |
I am a programmer.I want Grouping data at dataset. how do that???
|
|
|
|
 |