Results 1 to 5 of 5
  1. #1
    McArthurGDM is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    215

    Mouse-Over Button Effect Issue

    Hi All,

    I set up a form that is supposed to have a window pop up given that you 'mouse-over' certain text boxes. The only issue is a "flicker" or "flutter" effect that occurs when I implement my simple VBA code. Here it is:

    Private Sub Label94_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Me.REFIDlbl.Visible = True
    End Sub


    Private Sub Detail_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Me.REFIDlbl.Visible = False
    End Sub

    The "flicker" or "flutter" effect is naturally in the shape and position of my text box that I want to pop up. This happens every time I move the mouse on the detail portion of my form (as expected). Of course, the more pop ups I add, the worse it gets.

    Does anyone know how to get around this? Is there another trick/technique I can use?

    Thanks!

  2. #2
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,930
    I don't think there is a fix but I've never used this event.

    What popup? The code just shows making a label control visible.

    Why are you using this event? Would ControlTipText property serve?
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  3. #3
    McArthurGDM is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    215
    I think what you are talking about would work, I just don't know how to implement ControlTipText.

    As you move your mouse over a label, it makes another label visible. If you move the mouse away from the label on the form, it makes it invisible again. However, there is a "flicker" or "flutter" effect associated with it that I can't seem to get rid of it. I think ControlTipText would be the solution and any guidance is appreciated.

  4. #4
    June7's Avatar
    June7 is offline VIP
    Windows 7 64bit Access 2010 32bit
    Join Date
    May 2011
    Location
    The Great Land
    Posts
    52,930
    Just type into the property whatever text you want the ControlTip to display. Access Help has more guidance.
    How to attach file: http://www.accessforums.net/showthread.php?t=70301 To provide db: copy, remove confidential data, run compact & repair, zip w/Windows Compression.

  5. #5
    McArthurGDM is offline Competent Performer
    Windows 7 64bit Access 2010 64bit
    Join Date
    Jul 2014
    Posts
    215
    Okay, I'll mess around with it. Thanks!

Please reply to this thread with any new information or opinions.

Similar Threads

  1. Shape Effect on Toggle Buttons
    By dimoc in forum Access
    Replies: 5
    Last Post: 04-10-2014, 09:28 AM
  2. Replies: 9
    Last Post: 08-20-2013, 09:59 AM
  3. Replies: 4
    Last Post: 08-01-2013, 08:43 AM
  4. Calculations Per Row Effect
    By gatsby in forum Access
    Replies: 29
    Last Post: 05-26-2013, 07:33 PM
  5. Checking if mouse entered or left button
    By darekg11 in forum Forms
    Replies: 1
    Last Post: 09-28-2012, 05:18 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Other Forums: Microsoft Office Forums