I dont want tooltips an ReportRecordItems |
Post Reply |
Author | |
Jebo
Senior Member Joined: 27 October 2005 Location: Germany Status: Offline Points: 318 |
Post Options
Thanks(0)
Posted: 01 March 2009 at 1:37pm |
I dont want to see a tooltip when the mouse is placed over a ReportRecordItem, if the width of this column is too small.
I belief to remember me, that there is a way to deactivate this feature. but I can't remember how to do it. Can you tell me how please? THX Jebo |
|
Jebo
Senior Member Joined: 27 October 2005 Location: Germany Status: Offline Points: 318 |
Post Options
Thanks(0)
|
No way to deactivate ReportRecordItem-tooltips?
|
|
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
Hi,
The only thing you can do is, when adding ReportItem also assign .TooltipText = " " (not "" because this isn't working, use <SPACE>)
It's nasty solution but it works.
Would be nicer to have property: ShowTooltips = True/False
|
|
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2 Language: Visual Basic 6.0 Zero replies is not an option.... |
|
Jebo
Senior Member Joined: 27 October 2005 Location: Germany Status: Offline Points: 318 |
Post Options
Thanks(0)
|
THX Aaron!
Uuurgh, that's realy nasty, because the user will always see a empty tooltip! Hope CJ will spend a property to make ReportItem-tooltips optionally. |
|
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
Hi @Jebo
If you want to show tooltips, just add BeforeDrawRow event and add code:
If showTooltips Then Item.Tooltip = Item.Caption 'or Value Else Item.Tooltip = " " End If And create an option to set showTooltips (Checkbox, Commandbar menu item or.....)
Note: When you set showTooltips True or False don't forget to call wndReportControl.Redraw, this will take immediately effect on BeforeDrawRow event.
|
|
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2 Language: Visual Basic 6.0 Zero replies is not an option.... |
|
Jebo
Senior Member Joined: 27 October 2005 Location: Germany Status: Offline Points: 318 |
Post Options
Thanks(0)
|
OK thank U, will give a try!
|
|
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
Hi,
You can disable this... wndReportControl.EnableToolTips False
I did not know
|
|
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2 Language: Visual Basic 6.0 Zero replies is not an option.... |
|
Jebo
Senior Member Joined: 27 October 2005 Location: Germany Status: Offline Points: 318 |
Post Options
Thanks(0)
|
Bull's eye!
That's Exactly of what I tried to remind me! |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |