2011/07/21(Thu) 14:54:27 編集(投稿者)
2011/07/21(Thu) 14:45:01 編集(投稿者)
shu さん
ああああ!いつもすみません!
出来ました!
こうして見ました。
part1が追加する要素です。
Dim Index As Integer= ListBox1.IndexFromPoint(ListBox1.PointToClient(MousePosition))
If Index = 65535 Then
ListBox1.Items.Add(part1)
Else if ListBox1.GetItemRectangle(ListBox1.IndexFromPoint _
(ListBox1.PointToClient(MousePosition) ) ) _
.Contains _
(ListBox1.PointToClient(MousePosition) ) Then
ListBox1.Items.Insert(Index,part1)
Else
ListBox1.Items.Add(part1)
End If
ありがとうございます!