Nick,
Thanks for the "phone" review. Office on a phone just doen't make sense to me.
The Exhange/Outlook capability sounds actually useful.
As for BorderAround, in the 2010 tech preview, I got inconsistant results.
Some of the borders would appear and others wouldn't. For instance one or two of the borders would be missing while the others would be Ok.
I replaced what BorderAround code I had with code to apply the four borders individually.
This is an example of what I had, using an unshown sheet reference...
With .Range(.Cells(N - 6, 2), .Cells(N - 5, 9)) 'B4:I5
With .Font
.Size = Application.WorksheetFunction.Min((Application.StandardFontSize + 2), 15)
.Bold = True
.Name = "Comic Sans MS"
End With
.Interior.Color = vbWhite
.BorderAround Weight:=xlThin, Color:=vbBlack '<<<<<<<<<<<
.HorizontalAlignment = xlHAlignCenterAcrossSelection
.EntireRow.AutoFit
End With
I don't have the release to manufacturing version of Excel 2010.
'--
Jim Cone