OpenDCL Forums

OpenDCL => Runtime/AutoLISP => Topic started by: Peter2 on August 04, 2013, 11:50:14 PM

Title: Disable / enable all tooltips
Post by: Peter2 on August 04, 2013, 11:50:14 PM
In my first project I use many (and sometimes long) tooltips, it is a kind of "test" replacing a help-dokumentation. But I'm sure that the tooltips will be enervating when the user knows all features. So the question is:

How to disable (enable) all tooltips in a form with one click?

Thanks
Title: Re: Disable / enable all tooltips
Post by: owenwengerd on August 05, 2013, 08:32:26 AM
I think you would need to loop through each control and set the ToolTipTitle and ToolTipMainText properties to an empty string.
Title: Re: Disable / enable all tooltips
Post by: Peter2 on August 05, 2013, 08:59:46 AM
OK, thanks.