Hi I am new to using Xojo and was wondering if it would be possible to cause a window to open up when an item inside of a combo box was selected.
In the change event of the combo use window.show
just set the LISTINDEX to the value you desire
Bump
Bump?
In the Change Event, use the ListIndex Property to get the selected Row and open your Window with “Show”.
You could f.e. write in the Change Event:
Select Case Me.ListIndex
Case 1
WindowName1.Show
Case 2
WindowName2.Show
End Select
Or you just write WindowName.Show in the Change event.
[quote=31937:@Sascha S]Bump?
In the Change Event, use the ListIndex Property to get the selected Row and open your Window with “Show”.
You could f.e. write in the Change Event:
Select Case Me.ListIndex
Case 1
WindowName1.Show
Case 2
WindowName2.Show
End Select
Or you just write WindowName.Show in the Change event.[/quote]
Thanks, this worked out great for me