This procedure sets Reflection to copy screen information using tabs rather than spaces wherever there are 4 or more spaces between fields.
Sub TurnOnTableCopy()
With Session
.UseTableFormat = True
.BlanksBetweenFields = 4
End With
End Sub