He is not looking for "simplified", he is looking to save on repetitive typing.
I myself Copy the text in question and use Paste. You can save on typing dots.
Where it can really help is with large custom data types, and descriptive variable names:
With CustomerDatabase(CurrentDatabase)
.Name = “Steve”
.Age = 50
.Sex = “Not Often Enough”
.Phone = “None”
End With
Instead of typing CustomerDatabase(CurrentDatabase) multiple times, and possibly generating a typo (like your terrain demo the other day), you just With it once and it automatically associates everything to the End With as starting with whatever you told it to.
Often, if I’m working with a long program, I set up my keyboard to shortcut these things for me, already. It’s Fn + C, for example, to insert CustomerDatabase(, and Fn + D to insert CurrentDatabase, so I’d just type Fn + C, Fn + D to insert CustomerDatabase(CurrentDatabase into my code — though I could easily see where WITH would be easier to remember and use in the long run. I’m always forgetting what the heck the shortcut keys were for past projects…