Opening Crystal report from listbox

jomcleod

New member
Joined
Jun 8, 2005
Messages
2
Location
Michigan
Programming Experience
Beginner
I need help to open a Crystal report from a listbox. I can populate the listbox with the reports needed, but I can't figure out how to open a selectedItem.
Any help will be great appreciated.
 
jomcleod said:
I need help to open a Crystal report from a listbox. I can populate the listbox with the reports needed, but I can't figure out how to open a selectedItem.
Any help will be great appreciated.

PHP:
Private Sub ListView1_SelectedIndexChanged(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles ListView1.SelectedIndexChanged
Dim lvitem As ListViewItem 
For Each lvitem In ListView1.SelectedItems

'your code goes here 

Next

End Sub
 
Little more info

Thanks for the quick reply. What I'm trying to do is doubleClick on a SelectedItem within the listbox to open the report. The doubleClick event must open a "Crystal Report". Thanks again for any help.
 
Back
Top