how can i make a double click event in c# with access
-
how can i make a double click event in listview?? i want when i make a double click event in a row in listview i want to appear another form with a listview that displays the row that i make doubleclick with more details about this row. how can i make this ???
-
how can i make a double click event in listview?? i want when i make a double click event in a row in listview i want to appear another form with a listview that displays the row that i make doubleclick with more details about this row. how can i make this ???
What does "with access" mean? Are you using MS-Access as a database?
zebra88 wrote:
i want when i make a double click event in a row in listview
You hook the DoubleClick[^] event of the
ListView
. Create a form to show the details (using labels and textboxes) and callShowDialog
on that form. If you're not sure on how to hook an event, you'd better start with a good introductionary book on C#.Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]
-
What does "with access" mean? Are you using MS-Access as a database?
zebra88 wrote:
i want when i make a double click event in a row in listview
You hook the DoubleClick[^] event of the
ListView
. Create a form to show the details (using labels and textboxes) and callShowDialog
on that form. If you're not sure on how to hook an event, you'd better start with a good introductionary book on C#.Bastard Programmer from Hell :suss: If you can't read my code, try converting it here[^]