I have a table name logs that holds the accomplishments log of the employees in a particular organization
ID
User_ID
Logs
StartDate
StartTime
FinishedDate
FinishedTime
I want only to print based on two user inputs. The User_ID and FinishedDate. How to achieve it using Crystal Report?
This assumes you already have a report displaying data from that table (and you don't already have parameters in your report):
To apply these parameters from your VB application after data binding, you need to call the SetParameterValue method on the report object as follows:
Edit
You'll need to research loading data into your report in more detail. Your question was how to pass parameters to crystal from VB.net. Below is a brief run through: