Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Tooltips
Message
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00122229
Message ID:
00122237
Views:
16
Gilles,

There isn't any direct way of doing this. but you can search through SCX file and look for ToolTip property in 'properties' field.

Just a quick view.

USE myform.scx
LOCAL lnmemlines,lni
SCAN
lnmemlines = MEMLINES(properties)
FOR lni = 1 TO lnmemlines
lcstr = MLINE(properties,lni)
*-- Search 'ToolTip' property here
IF AT('Tooltip',lcstr) > 0
?lcstr
ENDIF
NEXT
ENDSCAN

Hope will help

Bye
Jayesh

>Hi !
>Is there a way to print a report of the tooltip text on all the forms in my application ?
>
>Thanks !
>
>Gilles
- Jayesh
Previous
Reply
Map
View

Click here to load this message in the networking platform