@@ -8,7 +8,7 @@ Attribute VB_Creatable = False
88Attribute VB_PredeclaredId = False
99Attribute VB_Exposed = True
1010''
11- ' DisplayReporter v2.0.0-alpha
11+ ' DisplayReporter v2.0.0-beta
1212' (c) Tim Hall - https://github.com/VBA-tools/Excel-TDD
1313'
1414' Report results to Worksheet
@@ -17,6 +17,12 @@ Attribute VB_Exposed = True
1717' @author tim.hall.engr@gmail.com
1818' @license MIT (http://www.opensource.org/licenses/mit-license.php)
1919' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ '
20+ Option Explicit
21+
22+ ' --------------------------------------------- '
23+ ' Constants and Private Variables
24+ ' --------------------------------------------- '
25+
2026Private Const ProgressWidth As Long = 128
2127Private pSheet As Worksheet
2228Private pCount As Long
@@ -194,8 +200,7 @@ Private Sub DisplayResults()
194200 For Each Divider In Dividers
195201 With pSheet.Range(pSheet.Cells(StartRow + Divider, StartColumn), pSheet.Cells(StartRow + Divider, StartColumn + 1 )).Borders(xlEdgeTop)
196202 .LineStyle = xlContinuous
197- .ThemeColor = 1
198- .TintAndShade = -0.249946592608417
203+ .Color = VBA.RGB(191 , 191 , 191 )
199204 .Weight = xlThin
200205 End With
201206 Next Divider
0 commit comments