Hello,

Let's say I have a form with a combobox full of names like George, Chris, James, etc.

Could I select from this list and.......

1) Pass the selection to crystal reports so it only shows the information regarding 'James' in CrystalReportViewer?

--or--

2) While CrystalReportViewer is on, put a combobox in another form where CrystalReportViewer is placed choose a name
from it and then filter according to the name selection?

I have a long list of names and I don't want to hardcode like:

VB Code:
  1. If cboName.Text = "James" Then
  2. '
  3. '
  4. '
  5. End if
  6.  
  7. If cboName.Text = "Chris" Then
  8. '
  9. '
  10. '
  11. End If

ETC.

Please let me know if you have any solutions?

Chris