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




Reply With Quote