List & Select
-
I have 8 items that i want to list and then select just one at a time and when selected have a differant window pop-up. what would be the best way of doing this. THANKS for your answers
-
I have 8 items that i want to list and then select just one at a time and when selected have a differant window pop-up. what would be the best way of doing this. THANKS for your answers
With a listbox, then handle the selection changed event, and work out what popup to show.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
-
With a listbox, then handle the selection changed event, and work out what popup to show.
Christian Graus - Microsoft MVP - C++ "I am working on a project that will convert a FORTRAN code to corresponding C++ code.I am not aware of FORTRAN syntax" ( spotted in the C++/CLI forum )
Dim current_item As Integer = CheckedListBox.SelectedIndex Select Case current_item Case 0 program code Case 1 etc.......
Is there another way of doing this?? -
Dim current_item As Integer = CheckedListBox.SelectedIndex Select Case current_item Case 0 program code Case 1 etc.......
Is there another way of doing this??Most likely there are plenty others ways to do it, but what's wrong with this way? Your question suggests that this method doesn't exactly produce the result you were looking for, or you are hoping that there is some more efficient way. Is either one the case?
My advice is free, and you may get what you paid for.