listbox rowsource

Katılım
26 Temmuz 2008
Mesajlar
162
Excel Vers. ve Dili
excel 2003
listboxun rowsource değerini aynı userformdaki bi comboboxun içeriğinde bulunan sayfa ismine göre atayabilirmiyiz.bir örnek kod verirmisiniz.tşkrler.
 
Katılım
27 Temmuz 2004
Mesajlar
719
Excel Vers. ve Dili
Excel 2003 Tr
Bu satırlar fikir verecektir.

Kod:
ComboBox1.RowSource = "Sayfa2!A1:A10"
ListBox1.RowSource = "Sayfa2!A1:A10"
syf = "Sayfa2"
ComboBox1.RowSource = syf & "!A1:A10"
ListBox1.RowSource = syf & "!A1:A10"

ListBox1.RowSource = ComboBox1.Value & "!A1:A10"
 
Üst