コンボボックス 1 にデータがあり、コンボボックス内のデータをアルファベット順に並べ替えることができるかどうか疑問に思っていましたか?
フォーラムを検索して答えを見つけようと何年も費やしましたが、何も見つかりませんでした.
With ComboBox2
.DisplayMember = "Name"
.ValueMember = "FullName"
.DataSource = New IO.DirectoryInfo("Path").GetFiles() _
.Select(Function(fi) New With {.Name = _
IO.Path.GetFileNameWithoutExtension(fi.FullName), fi.FullName}) _
.ToArray()
End With