Need help with reports

  • Thread starter Thread starter Loogie
  • Start date Start date
L

Loogie

I want to create reports and I don't care if I use crystal reports or
vb.net reports. I am using vb.net 2005 and the app pulls data from
user created access db's and compact 2005 sdf's.

Here is where things get a bit tricky for me. I don't want to open any
datasets to create my reports. All of the data I need is staring at me
on the screen. Is there anyway to copy over the contents of textboxes
and listviews to the report easily?

I tried using the Print Form utility in the Vb.Net Power Pack but it
only does a screen capture and does not get the all of the information
I require.

This is my first .net project that I have required paper reports and I
am completely lost on how to approach this.. Every tutorial I have
found does not seem to apply as they all want to use a single static
database. I literally can be pulling data from hundreds of databases
in a variety of formats.

Dumping the contents of forms seems to be the easiest and logical
solution...I just can't get a handle on it.

Please help.

Thanks

:L
 
You've cross-posted to way too many groups here. The compact framework
doesn't have Crystal Reports, VB.NET reports, Print Form, or any sort of
"Power Pack" so it's certainly off topic in this group.

-Chris
 
You've cross-posted to way too many groups here.  The compact framework
doesn't have Crystal Reports, VB.NET reports, Print Form, or any sort of
"Power Pack" so it's certainly off topic in this group.

-Chris

That was helpful.

Thanks

:L
 
The ReportViewer can source data from any data source that can expose
IBindingList. This means you can create an array, collection or many other
objects (not to mention DataTable objects) with the data and point the RDL
at the data. This is explained in Chapter 14 of my book.

--
__________________________________________________________________________
William R. Vaughn
President and Founder Beta V Corporation
Author, Mentor, Dad, Grandpa
Microsoft MVP
(425) 556-9205 (Pacific time)
Hitchhiker's Guide to Visual Studio and SQL Server (7th Edition)
____________________________________________________________________________________________
 
Back
Top