Article ID: 127845
Article Last Modified on 2/12/2000
frmTest = CREATEOBJECT("FormToolTip")
frmTest.Show
READ EVENTS
DEFINE CLASS FormToolTip AS FORM
* Uncomment the line below for the ToolTip to display.
* ShowTips = .T.
Caption="No tool Tip for the Text Box"
ADD OBJECT text1 AS textbox
* Incorrect setting for the ShowTips property
text1.ShowTips = .T.
text1.ToolTipText = "This is the Text"
text1.left=(thisform.width-this.text1.width)/2 && center text box
PROCEDURE Destroy
CLEAR EVENTS
ENDPROC
ENDDEFINE
Additional query words: VFoxWin
Keywords: KB127845