Hyperlink cursor inconsistant (1 Viewer)

DrPat

Registered User.
Local time
Yesterday, 21:41
Joined
Feb 7, 2011
Messages
39
[FONT=&quot]Good day all,
[/FONT]
[FONT=&quot]
[/FONT]
[FONT=&quot]I have a continuous subform on my main form where one text box is a hyperlink that opens a form. All is well, except....

When the mouse hovers over the text box of the top record, the cursor does not change to the hyperlink pointed finger thing (it’s I-beam), even though the text in the textbox displays in hyperlink format.

If I hover over the hyperlink/text boxes of records 2 thorough x, the hand-cursor appears.

More info:
1. The hyperlink functions normally (i.e., the appropriate form opens to the appropriate record)
2. When I then return to the main form, the hand-cursor magically appears when hovering the first record.
3. I have 2 other continuous subforms on the same main form that behave the same way.[/FONT]
[FONT=&quot] [/FONT]
[FONT=&quot]Has anyone experienced this or knows the cause?

Thanks,

/Pat [/FONT]
 

burrina

Registered User.
Local time
Yesterday, 20:41
Joined
May 10, 2014
Messages
974
I have not experienced this myself. However, here are a few suggestions.
Screen.MousePointer = 1 'Standard Cursor
Screen.MousePointer = 3 ' I Beam
Screen.MousePointer = 7 'Double Arrow Vertical
Screen.MousePointer = 9 'Double Arrow Horizontal
Screen.MousePointer = 11 'Hour Glass

DoCmd.Hourglass True/False

You might try implementing one of these.
 

DrPat

Registered User.
Local time
Yesterday, 21:41
Joined
Feb 7, 2011
Messages
39
OK. I got it sussed.

in the on open event of my main form, I requeried all the subforms.

Data-wise it was unnecessary, but it fixed this little bit of stupidity.

Thanks burrina. I'm going to put your suggestions in my back pocket for future use (these little tidbits always prove useful at some point).

/Pat
 

Users who are viewing this thread

Top Bottom