Hello, I am switching from VB 6.0 to VB.NET 2005 and have a question. .NET 2005 comes with Crystal Reports, and I am used to VB 6's Data Reports. Is there a way to do the following:
Custom Code in a crystal report (like you can set a custom query for the reports datasource in vb6.) The following is a situation I am talking about:
Once opening the report, the user is prompted for a StartDate and an EndDate. When the user enters a start and end date, the report uses the query
"SELECT * FROM tblName WHERE Date BETWEEN '" & StartDate & "'AND '" & EndDate & "'"
Also, how can I change the size of the lines in a line graph? Currently the graphing lines are very thin when printed...
Custom Code in a crystal report (like you can set a custom query for the reports datasource in vb6.) The following is a situation I am talking about:
Once opening the report, the user is prompted for a StartDate and an EndDate. When the user enters a start and end date, the report uses the query
"SELECT * FROM tblName WHERE Date BETWEEN '" & StartDate & "'AND '" & EndDate & "'"
Also, how can I change the size of the lines in a line graph? Currently the graphing lines are very thin when printed...