Click here to Skip to main content
16,006,001 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Rtb and timer. Pin
Paul Conrad16-Nov-08 17:50
professionalPaul Conrad16-Nov-08 17:50 
GeneralRe: Rtb and timer. Pin
Subjugate16-Nov-08 18:26
Subjugate16-Nov-08 18:26 
GeneralRe: Rtb and timer. Pin
Dave Kreskowiak17-Nov-08 1:48
mveDave Kreskowiak17-Nov-08 1:48 
Questionhow to use VirtualQueryEx in vb.net Pin
lucdt16-Nov-08 15:14
lucdt16-Nov-08 15:14 
QuestionTooltip problem Pin
johnny196316-Nov-08 12:46
johnny196316-Nov-08 12:46 
AnswerRe: Tooltip problem Pin
Christian Graus16-Nov-08 13:03
protectorChristian Graus16-Nov-08 13:03 
AnswerRe: Tooltip problem Pin
Anoop Brijmohun16-Nov-08 20:09
Anoop Brijmohun16-Nov-08 20:09 
GeneralRe: Tooltip problem [modified] Pin
johnny196316-Nov-08 20:54
johnny196316-Nov-08 20:54 
I tried different ways like this



Private Sub TextBox1_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.MouseEnter

If TextBox1.TextLength > 0 Then
ToolTip1.Active = False
ToolTip2.SetToolTip(TextBox1, TextBox1.Text)
Else
ToolTip1.Active = True
ToolTip1.SetToolTip(TextBox1, String.Format("Dubbelklik linker muisknop voor{0}Nieuwe Afspraak{0}Of om Afspraak te Bewereken.", Environment.NewLine))
End If

End sub



Private Sub TextBox2_MouseEnter(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox2.MouseEnter

If TextBox2.TextLength > 0 Then
ToolTip1.Active = False
ToolTip2.SetToolTip(TextBox2, TextBox2.Text)
Else
ToolTip1.Active = True
ToolTip1.SetToolTip(TextBox2, String.Format("Dubbelklik linker muisknop voor{0}Nieuwe Afspraak{0}Of om Afspraak te Bewereken.", Environment.NewLine))
End If

End sub


Private Sub TextBox1_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox1.MouseLeave

ToolTip1.Active = False

End Sub


Private Sub TextBox2_MouseLeave(ByVal sender As Object, ByVal e As System.EventArgs) Handles TextBox2.MouseLeave

ToolTip1.Active = False

End Sub



but it's alway the same can you help me a little bit ?

modified on Monday, November 17, 2008 3:18 AM

GeneralRe: Tooltip problem [modified] Pin
Anoop Brijmohun16-Nov-08 21:34
Anoop Brijmohun16-Nov-08 21:34 
GeneralRe: Tooltip problem Pin
johnny196316-Nov-08 22:00
johnny196316-Nov-08 22:00 
GeneralRe: Tooltip problem Pin
Anoop Brijmohun16-Nov-08 22:12
Anoop Brijmohun16-Nov-08 22:12 
GeneralRe: Tooltip problem Pin
johnny196316-Nov-08 22:32
johnny196316-Nov-08 22:32 
GeneralRe: Tooltip problem Pin
Anoop Brijmohun16-Nov-08 22:44
Anoop Brijmohun16-Nov-08 22:44 
General[Message Deleted] Pin
johnny196316-Nov-08 22:10
johnny196316-Nov-08 22:10 
GeneralRe: Tooltip problem Pin
Anoop Brijmohun16-Nov-08 22:30
Anoop Brijmohun16-Nov-08 22:30 
GeneralRe: Tooltip problem Pin
johnny196316-Nov-08 22:39
johnny196316-Nov-08 22:39 
GeneralRe: Tooltip problem Pin
johnny196316-Nov-08 22:41
johnny196316-Nov-08 22:41 
QuestionThe Annoying DesignMode Icon Pin
Saul Johnson16-Nov-08 0:42
Saul Johnson16-Nov-08 0:42 
AnswerRe: The Annoying DesignMode Icon Pin
Thomas Stockwell16-Nov-08 5:09
professionalThomas Stockwell16-Nov-08 5:09 
GeneralRe: The Annoying DesignMode Icon Pin
Saul Johnson16-Nov-08 7:08
Saul Johnson16-Nov-08 7:08 
QuestionCan somebody help me on writing code for Crystal reports .net 2005 Pin
Rameel116-Nov-08 0:18
Rameel116-Nov-08 0:18 
AnswerRe: Can somebody help me on writing code for Crystal reports .net 2005 Pin
Rameel116-Nov-08 6:33
Rameel116-Nov-08 6:33 
GeneralRe: Can somebody help me on writing code for Crystal reports .net 2005 Pin
Mycroft Holmes16-Nov-08 15:00
professionalMycroft Holmes16-Nov-08 15:00 
GeneralRe: Can somebody help me on writing code for Crystal reports .net 2005 Pin
Rameel116-Nov-08 15:27
Rameel116-Nov-08 15:27 
GeneralRe: Can somebody help me on writing code for Crystal reports .net 2005 Pin
Mycroft Holmes16-Nov-08 16:01
professionalMycroft Holmes16-Nov-08 16:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.