Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
930 views
in Technique[技术] by (71.8m points)

vb.net - Insert distinct data into Combobox List

I just want to ask if how to insert my distinct data to my combobox?

i.e.

dim query as string
query = "SELECT DISTINCT Department FROM tblEmployees" 

combobox1.text = ????

thanks!

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
dim query as string
query = "SELECT DISTINCT Department FROM tblEmployees" 

Me.ComboBox1.RowSource = query
Me.ComboBox1.Refresh

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...