|
■No95240 (NNN さん) に返信 > プログラムコード上で任意の時にバルーンヒントを表示したいのですが、 > どのようにすれば良いですか?
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click ShowBallon(TextBox1, "エラー", "タイトル", ToolTipIcon.Warning) End Sub
Public Sub ShowBallon(target As Control, message As String, title As String, icon As ToolTipIcon) ToolTip1.IsBalloon = True ToolTip1.ShowAlways = True ToolTip1.ToolTipIcon = icon ToolTip1.ToolTipTitle = title Dim pos As New Point(target.Width \ 2, target.Height \ 2) ToolTip1.Show(message, target, pos, 55) ToolTip1.Show(message, target, pos, 5000) End Sub
|