■No59101 (さくたま さん) に返信
> ListBox生成時にSelectedIndexを-1にする方法、又は他に仕分けられる項目がありましたら
> 教えていただけないでしょうか
> よろしくお願いします
アクティブコントロール時のみセットするようにするとか。
If Me.ActiveControl.Name = DirectCast(sender, Control).Name Then
If ListBox1.SelectedIndex <> -1 Then
Me.TextBox1.Text = ListBox1.SelectedValue.ToString
End If
End If