Microsoft KB Archive/250080

From BetaArchive Wiki
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Article ID: 250080

Article Last Modified on 10/16/2002



APPLIES TO

  • Microsoft Visual FoxPro 5.0 Standard Edition
  • Microsoft Visual FoxPro 5.0a
  • Microsoft Visual FoxPro 6.0 Professional Edition



This article was previously published under Q250080

SYMPTOMS

The mouse pointer changes to the default pointer when hovering over a text box border regardless of the mouse pointer setting on the form and text box.

RESOLUTION

Placing NODEFAULT in the MouseMove event of the text box keeps the mouse pointer from changing.

STATUS

Microsoft has confirmed that this is a bug in the Microsoft products that are listed at the beginning of this article.

MORE INFORMATION

Steps to Reproduce Behavior

  1. Copy the following code into a program file (.prg) and run it:

    PUBLIC oForm
    oForm=CREATEOBJECT("Form")
    WITH oForm
      .ADDOBJECT("Text1","textbox")
      .text1.VISIBLE = .T.
      .SETALL('MousePointer',11)
      .MOUSEPOINTER = 11
      .SHOW
    ENDWITH
    RETURN
  2. Slowly hover the mouse pointer over the border of the text box. Notice that the mouse pointer changes from an hourglass to the default arrow pointer.


REFERENCES

Keywords: kbbug kbnofix kbcontainer kbctrl KB250080