Controltip Text speed

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jshe
    New Member
    • Sep 2008
    • 2

    Controltip Text speed

    Is there a way to speed up the time it takes for a controltip text message to appear on a textbox in my forms? Ideally I would like the controltip message to appear instantaneously when the cursor is on the applicable field. I'm using MS 2003, and I am a noob.

    thanks
  • ADezii
    Recognized Expert Expert
    • Apr 2006
    • 8834

    #2
    To the best of my knowledge, there is absolutely no way to regulate the speed of the Control Tip Display Text. You can however, create an instantaneous display of Text on the Status Bar whenever the Mouse is over specific Controls. To display a Tip on a SSAN Field in the Status Bar, place the following code in the MouseMove() Event of the SSAN Field:
    Code:
    Private Sub SSAN_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
      Dim varRet
      varRet = SysCmd(acSysCmdSetStatus, "Enter the Employee's SSAN in XXX-XX-XXXX Format")
    End Sub
    To avoid confusion, you must clear all Status Bar Text whenever the Mouse has left a Control and is over the Detail Section:
    Code:
    Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
      Dim varRet
      varRet = SysCmd(acSysCmdSetStatus, " ")
    End Sub
    Hope this helps,,,

    Comment

    • Jshe
      New Member
      • Sep 2008
      • 2

      #3
      Hey, thanks for the quick response. I will try that.

      Comment

      Working...