Office 2007 Tooltips? |
Post Reply |
Author | |
rdeboer
Groupie Joined: 29 April 2004 Location: Netherlands Status: Offline Points: 81 |
Post Options
Thanks(0)
Posted: 12 November 2010 at 3:42pm |
You can use PaintManager.ColumnStyle = = xtpColumnOffice2007 to make it look like Office2007, but the tooltips are old-fashioned style. IS there a way to show Ofice2007 style tooltips, or Office2007 VisualTheme for ReportControl? |
|
Product: Xtreme Suite Pro (ActiveX) version 11
Platform: Windows XP SP3 (32bit) Language: Visual Basic 6.0 SP6 |
|
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
Hi,
Yes, there is:
With Me.wndReportControl.ToolTipContext
.Style = xtpToolTipOffice2007 End With |
|
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.... |
|
rdeboer
Groupie Joined: 29 April 2004 Location: Netherlands Status: Offline Points: 81 |
Post Options
Thanks(0)
|
Thank you!
BTW Is there a way to set the Tooltip for the whole Row instead of the Item? |
|
Product: Xtreme Suite Pro (ActiveX) version 11
Platform: Windows XP SP3 (32bit) Language: Visual Basic 6.0 SP6 |
|
Aaron
Senior Member Joined: 29 January 2008 Status: Offline Points: 2192 |
Post Options
Thanks(0)
|
Hi,
Assign tooltip values yourself when adding items
With frmMain.wndReportControl.Records.Add
With .AddItem("first col") .Tooltip = "test tooltip" End With With .AddItem("second col") .Tooltip = "" End With End With
OR
Use GetTooltipInfo event to display your own tooltips
Private Sub ReportControl1_GetToolTipInfo(ByVal toolTipInfo As XtremeReportControl.IReportToolTipInfo)
With toolTipInfo .Text = "Row: " & .Row.Index & " Col: " & .Item.Index End With End Sub Hope this helps
|
|
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.... |
|
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 |