When is it really not necessecary to use With....End With...e.g. i use with functions such as
With Printer
.Orientation = printmode.dmOrientation
.PrintQuality = printmode.dmPrintQuality
.ColorMode = printmode.dmColor
.Copies = printmode.dmCopies
.PaperSize = printmode.dmPaperSize
.ScaleLeft = -0.5 * 1440
.ScaleTop = -0.5 * 1440
.CurrentX = 0
.CurrentY = 0
End With
but i wouldnt use it if tehre was only 3 or 4 items. Should i? What is the "standard" number of items that one should begin to use with and end with for?....does using it do anything more than save my hands some extra typing?