Is there any advantage to doing this:
Code:
With Object
    .Blah = 100
    .Thing = 20
    .SomeOtherNumber = 5
End With
instead of this:
Code:
Object.Blah = 100
Object.Thing = 20
Object.SomeOtherNumber = 5
Apart from, of course, being neater, does using With give any other advantages? e.g. speed (efficiency) etc.