RobBroekhuis
Technical User
Allright, so I wasn't born an object-oriented programmer...
Here's what I'm trying to do: I have a range object erng. I need to do some processing around that range, so I want to use a second object rng. I naively thought I could use
to create a new independent object, but instead, manipulations of rng affect erng as well. I guess I should have known. But how can I do what I'm trying to achieve? I know this works:
but I'm trying to avoid the selection object. The new keyword doesn't appear to apply to range objects.
Help!
Rob
Here's what I'm trying to do: I have a range object erng. I need to do some processing around that range, so I want to use a second object rng. I naively thought I could use
Code:
set rng=erng
Code:
erng.select
set rng=selection.range
Help!
Rob