SerranoG
I to have problems with the VBA code for bold. I came to the conclusion that words do not want to be bolded in VBA code. ;) J/K but I did find this page that discussed making a box and making the border darder. the code reads something like this
Private Sub Report_Page()
On Error Resume Next
' Set Thickness and Border Style
Me.DrawWidth = 6 ' larger number, thicker line
Me.DrawStyle = 0 ' 0 to 6 = solid to invisible
' object.Line (x1, y1) - (x2,y2), color, [Box=B]
Me.Line (0, 0)-(Me.ScaleWidth, Me.ScaleHeight), vbGreen, B
End Sub
maybe the characters and formating in bold has something to do with the draw style or width. I don't know if this is helpful.