cancel
Showing results for 
Search instead for 
Did you mean: 

how to disable tool tips in JRC

Former Member
0 Kudos

Please let me know how to disable tooltip in browser for JRC

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I do not think it is possible to disable tooltips with JRC.

But in RDC you can try to turn off all the tooltips for the reportobjects, including objects within the subreport with the snippet code below:

Dim i As Integer
Dim ii As Integer
Dim iii As Integer
Dim iiii As Integer

For i = 1 To Report.Sections.Count
    For ii = 1 To Report.Sections(i).ReportObjects.Count
        Report.Sections(i).ReportObjects(ii).ConditionFormula(crToolTipTextConditionFormulaType) = "chr(9)"
        If Report.Sections(i).ReportObjects(ii).Kind = crSubreportObject Then
                Set subreport = Report.OpenSubreport(Report.Sections(i).ReportObjects(ii).SubreportName)
                    For iii = 1 To subreport.Sections.Count
                        For iiii = 1 To subreport.Sections(iii).ReportObjects.Count
                            subreport.Sections(iii).ReportObjects(iiii).ConditionFormula(crToolTipTextConditionFormulaType) = "chr(9)"
                        Next iiii
                    Next iii
        End If
    Next ii
Next i

Cheers