G
Geoff Pennington
I have a form, call it SearchCriteria, which opens another form using this
code:
Dim frmResults As New SearchResults()
frmResults.ShowDialog()
In the SearchCriteria form the users specify, well, the criteria for
conducting a search. SearchResults should use that criteria to query the
database and then display the results. How do I pass the criteria from
SearchCriteria to SearchResults?
Much obliged.
code:
Dim frmResults As New SearchResults()
frmResults.ShowDialog()
In the SearchCriteria form the users specify, well, the criteria for
conducting a search. SearchResults should use that criteria to query the
database and then display the results. How do I pass the criteria from
SearchCriteria to SearchResults?
Much obliged.