select method (replace argument?!?)

F

Flyboy

Ok, it says "variant" True / False for the select method
(to append a new selection onto the current selection)..

I've tried handing every way of saying "false" in
javascript and vbscript I can think of, I feel silly, as
I'm sure this is a simple problem..

(I feel like a beggar asking for change this time..)

obj.ActiveSheet.Cells(1,1).Select();
obj.ActiveSheet.Cells(5,1).Select("don't freaking wipe out
my current selection, just add to it please!");

or at least, something like this would be nice..

obj.ActiveSheet.Rows(1,4,5,6,22,44).Select();
(I know that won't work, as it's just a propety..)

advance (thanks in)...

Ryan
 
B

bwallan

OWC10 allowed the .Select(variable). The OWC11
documentation does not show a parameter option, i.e.:
only .Select with no parameters. Also, the sheet does not
allow multiple selection blocks or Ctrl-Mouse deletions
from contiguous blocks

Needless to say I'm just using Range("Cell1:Cell2").Select
to indicate selections.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top