|
■No45413 (wicket さん) に返信
> 2010/01/12(Tue) 16:26:12 編集(投稿者)
>
> VC#2008でツールチップの使いかたで悩んでいます。
>
> プロパティウィンドウで文字が長くて見えないときに、マウスを持っていくと文字列全体がツールヒントで表示されます。
> しかも、文字が重なるようにツールヒントがでます。
Private Sub ListBox1_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.SelectedIndexChanged
If Me.ListBox1.SelectedIndex >= 0 Then
Me.ToolTip1.SetToolTip(Me.ListBox1, Me.ListBox1.Items(Me.ListBox1.SelectedIndex))
End If
End Sub
こういうこと?それともマウス位置の文字列かな?
|