how to create report without connection with database?
Hi
how can i generate report without using database? becouse i work on a project and i want to print the report from some data entered by the user and from some calculation do by the program,so there is any way to print report with vs 2008 without using database??
:confused:
Thankyou
Re: how to create report without connection with database?
Yes,
You need to provide more information.
What programming language?
What reporting tool do you want to use?
Will the data be in textboxes, grids, labels?
Re: how to create report without connection with database?
Quote:
Originally Posted by
wes4dbt
Yes,
You need to provide more information.
What programming language?
i use visual basic programming language
What reporting tool do you want to use?
from my search i know that i can use crystal report or report wizard but i don't know use which and how??
Will the data be in textboxes, grids, labels?
the data in the report will be take from radiobutton selected by the user,combobox and according that the program will do some calculation and the result will show in report. i want show data as tabular view
thank you very much:o
Re: how to create report without connection with database?
Quote:
i use visual basic programming language
Which one? VB6, .Net 2010? There are lots of visual basics.
If your using .Net 2005 and crystal reports, then you would add a report to the project and then add the textboxes to the report. You could enter the information into the textboxes like this,
Code:
Dim rpt as new yourreportname
Dim objText As CrystalDecisions.CrystalReports.Engine.TextObject = _
rpt.ReportDefinition.Sections(3).ReportObjects("textboxname")
objText.Text = "some value"
Re: how to create report without connection with database?
Quote:
Originally Posted by
wes4dbt
Which one? VB6, .Net 2010? There are lots of visual basics.
If your using .Net 2005 and crystal reports, then you would add a report to the project and then add the textboxes to the report. You could enter the information into the textboxes like this,
Code:
Dim rpt as new yourreportname
Dim objText As CrystalDecisions.CrystalReports.Engine.TextObject = _
rpt.ReportDefinition.Sections(3).ReportObjects("textboxname")
objText.Text = "some value"
i use visual basic 2008
can i use the datagrideview tool to represent my data?
Re: how to create report without connection with database?
The code example I posted should work with the CR version that comes with .Net 2008.