Hallo,
habe eine Combo Box erstellt, mit folgendem Inhalt
Combo1.AddItem Format(„DM“, 0)
Combo1.AddItem Format(„Dollar“, 1)
Combo1.AddItem Format(„FRF“, 2)
Combo1.AddItem Format(„Pound“, 3)
Combo1.AddItem Format(„Euro“, 4)
Jetzt möchte ich die Auswahl des users lesen. Irgendwie bekomme ich das nicht so hin:
Private Sub Combo1_Click()
Dim value_selected As string
value_selected = Combo1.List(ListIndex)
End Sub
Hoffe jemand kann mir helfen.
Gruß,
Ayla.