Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Tooltip on Column headers
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00548848
Message ID:
00548886
Views:
14
Easier way to do this in VFP 7 is place code in the MouseEnter and MouseLeave method of each header:
Procedure MouseEnter
   LPARAMETERS nButton, nShift, nXCoord, nYCoord
   This.Parent.Parent.ToolTipText = 'Over Col ' ;
              + TRANSFORM(This.Parent.ColumnOrder)
endproc
Procedure MouseLeave
   LPARAMETERS nButton, nShift, nXCoord, nYCoord
   This.Parent.Parent.ToolTipText = ''
endproc
Mark McCasland
Midlothian, TX USA
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform