기타 [vb.net] ToolTip
페이지 정보
본문
Private Sub SetToolTip(ByRef ctl As Control, ByVal caption As String)
Dim toolTip1 As ToolTip = New ToolTip()
toolTip1.AutoPopDelay = 5000
toolTip1.InitialDelay = 100
toolTip1.ReshowDelay = 500
toolTip1.ShowAlways = True
toolTip1.SetToolTip(ctl, caption)
End Sub
SetToolTip(Button7, "Print paper")
SetToolTip(Button9, "Print wrong answers")
SetToolTip(Button6, "Print answersheet")
SetToolTip(Button1, "Insert anwersheet")
SetToolTip(Button8, "ID search")
SetToolTip(Button2, "History")
- 이전글vb.net 컨트롤이 자신이 만들어진 스레드가 아닌 스레드에서 액세스되었습니다. 21.05.02
- 다음글[vb.net] TextBox Ctrl+c and Ctrl+v how to implement 21.03.18
댓글목록
등록된 댓글이 없습니다.